File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -727,8 +727,8 @@ impl<T> *const [T] {
727
727
/// assert_eq!(slice.len(), 3);
728
728
/// ```
729
729
#[ inline]
730
- #[ unstable( feature = "slice_ptr_len" , issue = "none " ) ]
731
- #[ rustc_const_unstable( feature = "const_slice_ptr_len" , issue = "none " ) ]
730
+ #[ unstable( feature = "slice_ptr_len" , issue = "71146 " ) ]
731
+ #[ rustc_const_unstable( feature = "const_slice_ptr_len" , issue = "71146 " ) ]
732
732
pub const fn len ( self ) -> usize {
733
733
unsafe { Repr { rust : self } . raw } . len
734
734
}
Original file line number Diff line number Diff line change @@ -915,8 +915,8 @@ impl<T> *mut [T] {
915
915
/// assert_eq!(slice.len(), 3);
916
916
/// ```
917
917
#[ inline]
918
- #[ unstable( feature = "slice_ptr_len" , issue = "none " ) ]
919
- #[ rustc_const_unstable( feature = "const_slice_ptr_len" , issue = "none " ) ]
918
+ #[ unstable( feature = "slice_ptr_len" , issue = "71146 " ) ]
919
+ #[ rustc_const_unstable( feature = "const_slice_ptr_len" , issue = "71146 " ) ]
920
920
pub const fn len ( self ) -> usize {
921
921
unsafe { Repr { rust_mut : self } . raw } . len
922
922
}
You can’t perform that action at this time.
0 commit comments