From a671fa1b15451fc386ed9077466047e19fb74078 Mon Sep 17 00:00:00 2001 From: The 8472 Date: Sat, 2 Apr 2022 19:46:12 +0200 Subject: [PATCH] add tracking issue --- library/core/src/ptr/mut_ptr.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/core/src/ptr/mut_ptr.rs b/library/core/src/ptr/mut_ptr.rs index 66e7ac0d3c46..dc63ca809f19 100644 --- a/library/core/src/ptr/mut_ptr.rs +++ b/library/core/src/ptr/mut_ptr.rs @@ -1382,7 +1382,7 @@ impl *mut [T] { /// ``` #[inline(always)] #[track_caller] - #[unstable(feature = "raw_slice_split", issue = "71146")] + #[unstable(feature = "raw_slice_split", issue = "95595")] pub fn split_at_mut(self, mid: usize) -> (*mut [T], *mut [T]) { assert!(mid <= self.len()); // SAFETY: `[ptr; mid]` and `[mid; len]` are inside `self`, which @@ -1426,7 +1426,7 @@ impl *mut [T] { /// assert_eq!(v, [1, 2, 3, 4, 5, 6]); /// ``` #[inline(always)] - #[unstable(feature = "raw_slice_split", issue = "71146")] + #[unstable(feature = "raw_slice_split", issue = "95595")] pub unsafe fn split_at_mut_unchecked(self, mid: usize) -> (*mut [T], *mut [T]) { let len = self.len(); let ptr = self.as_mut_ptr();