Skip to content

Commit 0bcfd2d

Browse files
committed
Auto merge of #108273 - tspiteri:const_slice_split_at_not_mut, r=dtolnay
Stabilize const slice::split_at This stabilizes the use of the following method in const context: ```rust impl<T> [T] { pub const fn split_at(&self, mid: usize) -> (&[T], &[T]); } ``` cc tracking issue #101158
2 parents 8d18c32 + b46b05d commit 0bcfd2d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

library/core/src/slice/mod.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1595,7 +1595,8 @@ impl<T> [T] {
15951595
/// }
15961596
/// ```
15971597
#[stable(feature = "rust1", since = "1.0.0")]
1598-
#[rustc_const_unstable(feature = "const_slice_split_at_not_mut", issue = "101158")]
1598+
#[rustc_const_stable(feature = "const_slice_split_at_not_mut", since = "CURRENT_RUSTC_VERSION")]
1599+
#[rustc_allow_const_fn_unstable(slice_split_at_unchecked)]
15991600
#[inline]
16001601
#[track_caller]
16011602
#[must_use]

0 commit comments

Comments
 (0)