File tree 2 files changed +1
-4
lines changed
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1041,7 +1041,6 @@ impl<T> MaybeUninit<T> {
1041
1041
1042
1042
/// Deprecated version of [`slice::assume_init_ref`].
1043
1043
#[ unstable( feature = "maybe_uninit_slice" , issue = "63569" ) ]
1044
- #[ rustc_const_unstable( feature = "maybe_uninit_slice" , issue = "63569" ) ]
1045
1044
#[ deprecated(
1046
1045
note = "replaced by inherent assume_init_ref method; will eventually be removed" ,
1047
1046
since = "1.83.0"
@@ -1053,7 +1052,6 @@ impl<T> MaybeUninit<T> {
1053
1052
1054
1053
/// Deprecated version of [`slice::assume_init_mut`].
1055
1054
#[ unstable( feature = "maybe_uninit_slice" , issue = "63569" ) ]
1056
- #[ rustc_const_unstable( feature = "maybe_uninit_slice" , issue = "63569" ) ]
1057
1055
#[ deprecated(
1058
1056
note = "replaced by inherent assume_init_mut method; will eventually be removed" ,
1059
1057
since = "1.83.0"
@@ -1326,7 +1324,6 @@ impl<T> [MaybeUninit<T>] {
1326
1324
///
1327
1325
/// [`write_clone_of_slice`]: slice::write_clone_of_slice
1328
1326
#[ unstable( feature = "maybe_uninit_write_slice" , issue = "79995" ) ]
1329
- #[ rustc_const_unstable( feature = "maybe_uninit_write_slice" , issue = "79995" ) ]
1330
1327
pub const fn write_copy_of_slice ( & mut self , src : & [ T ] ) -> & mut [ T ]
1331
1328
where
1332
1329
T : Copy ,
Original file line number Diff line number Diff line change @@ -956,7 +956,6 @@ impl<T> [T] {
956
956
/// [`swap`]: slice::swap
957
957
/// [undefined behavior]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html
958
958
#[ unstable( feature = "slice_swap_unchecked" , issue = "88539" ) ]
959
- #[ rustc_const_unstable( feature = "slice_swap_unchecked" , issue = "88539" ) ]
960
959
pub const unsafe fn swap_unchecked ( & mut self , a : usize , b : usize ) {
961
960
assert_unsafe_precondition ! (
962
961
check_library_ub,
@@ -3716,6 +3715,7 @@ impl<T> [T] {
3716
3715
#[ inline]
3717
3716
#[ stable( feature = "copy_from_slice" , since = "1.9.0" ) ]
3718
3717
#[ rustc_const_unstable( feature = "const_copy_from_slice" , issue = "131415" ) ]
3718
+ #[ rustc_const_stable_indirect]
3719
3719
#[ track_caller]
3720
3720
pub const fn copy_from_slice ( & mut self , src : & [ T ] )
3721
3721
where
You can’t perform that action at this time.
0 commit comments