@@ -1899,7 +1899,7 @@ impl<T> [T] {
1899
1899
#[ inline]
1900
1900
#[ track_caller]
1901
1901
#[ must_use]
1902
- #[ rustc_const_unstable ( feature = "const_slice_split_at_mut" , issue = "101804 " ) ]
1902
+ #[ rustc_const_stable ( feature = "const_slice_split_at_mut" , since = "CURRENT_RUSTC_VERSION " ) ]
1903
1903
pub const fn split_at_mut ( & mut self , mid : usize ) -> ( & mut [ T ] , & mut [ T ] ) {
1904
1904
match self . split_at_mut_checked ( mid) {
1905
1905
Some ( pair) => pair,
@@ -2001,7 +2001,7 @@ impl<T> [T] {
2001
2001
/// assert_eq!(v, [1, 2, 3, 4, 5, 6]);
2002
2002
/// ```
2003
2003
#[ stable( feature = "slice_split_at_unchecked" , since = "1.79.0" ) ]
2004
- #[ rustc_const_unstable ( feature = "const_slice_split_at_mut" , issue = "101804 " ) ]
2004
+ #[ rustc_const_stable ( feature = "const_slice_split_at_mut" , since = "CURRENT_RUSTC_VERSION " ) ]
2005
2005
#[ inline]
2006
2006
#[ must_use]
2007
2007
pub const unsafe fn split_at_mut_unchecked ( & mut self , mid : usize ) -> ( & mut [ T ] , & mut [ T ] ) {
@@ -2101,7 +2101,7 @@ impl<T> [T] {
2101
2101
/// assert_eq!(None, v.split_at_mut_checked(7));
2102
2102
/// ```
2103
2103
#[ stable( feature = "split_at_checked" , since = "1.80.0" ) ]
2104
- #[ rustc_const_unstable ( feature = "const_slice_split_at_mut" , issue = "101804 " ) ]
2104
+ #[ rustc_const_stable ( feature = "const_slice_split_at_mut" , since = "CURRENT_RUSTC_VERSION " ) ]
2105
2105
#[ inline]
2106
2106
#[ must_use]
2107
2107
pub const fn split_at_mut_checked ( & mut self , mid : usize ) -> Option < ( & mut [ T ] , & mut [ T ] ) > {
0 commit comments