We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d830f46 commit 0ff8d40Copy full SHA for 0ff8d40
src/liballoc/tests/str.rs
@@ -1326,6 +1326,7 @@ fn test_str_default() {
1326
1327
t::<&str>();
1328
t::<String>();
1329
+ t::<&mut str>();
1330
}
1331
1332
#[test]
src/libcore/str/mod.rs
@@ -3875,6 +3875,12 @@ impl<'a> Default for &'a str {
3875
fn default() -> &'a str { "" }
3876
3877
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
+
3884
/// An iterator over the non-whitespace substrings of a string,
3885
/// separated by any amount of whitespace.
3886
///
0 commit comments