Skip to content

Commit 0ff8d40

Browse files
committed
impl Default for &mut str
1 parent d830f46 commit 0ff8d40

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

src/liballoc/tests/str.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1326,6 +1326,7 @@ fn test_str_default() {
13261326

13271327
t::<&str>();
13281328
t::<String>();
1329+
t::<&mut str>();
13291330
}
13301331

13311332
#[test]

src/libcore/str/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -3875,6 +3875,12 @@ impl<'a> Default for &'a str {
38753875
fn default() -> &'a str { "" }
38763876
}
38773877

3878+
#[stable(feature = "default_mut_str", since = "1.28.0")]
3879+
impl<'a> Default for &'a mut str {
3880+
/// Creates an empty mutable str
3881+
fn default() -> &'a mut str { unsafe { from_utf8_unchecked_mut(&mut []) } }
3882+
}
3883+
38783884
/// An iterator over the non-whitespace substrings of a string,
38793885
/// separated by any amount of whitespace.
38803886
///

0 commit comments

Comments
 (0)