@@ -467,8 +467,6 @@ impl<T> NonNull<[T]> {
467
467
/// # Examples
468
468
///
469
469
/// ```rust
470
- /// #![feature(nonnull_slice_from_raw_parts)]
471
- ///
472
470
/// use std::ptr::NonNull;
473
471
///
474
472
/// // create a slice pointer when starting out with a pointer to the first element
@@ -480,8 +478,8 @@ impl<T> NonNull<[T]> {
480
478
///
481
479
/// (Note that this example artificially demonstrates a use of this method,
482
480
/// but `let slice = NonNull::from(&x[..]);` would be a better way to write code like this.)
483
- #[ unstable ( feature = "nonnull_slice_from_raw_parts" , issue = "71941 " ) ]
484
- #[ rustc_const_unstable( feature = "const_nonnull_slice_from_raw_parts " , issue = "71941 " ) ]
481
+ #[ stable ( feature = "nonnull_slice_from_raw_parts" , since = "CURRENT_RUSTC_VERSION " ) ]
482
+ #[ rustc_const_unstable( feature = "const_slice_from_raw_parts_mut " , issue = "67456 " ) ]
485
483
#[ must_use]
486
484
#[ inline]
487
485
pub const fn slice_from_raw_parts ( data : NonNull < T > , len : usize ) -> Self {
@@ -499,7 +497,6 @@ impl<T> NonNull<[T]> {
499
497
/// # Examples
500
498
///
501
499
/// ```rust
502
- /// #![feature(nonnull_slice_from_raw_parts)]
503
500
/// use std::ptr::NonNull;
504
501
///
505
502
/// let slice: NonNull<[i8]> = NonNull::slice_from_raw_parts(NonNull::dangling(), 3);
@@ -519,7 +516,7 @@ impl<T> NonNull<[T]> {
519
516
/// # Examples
520
517
///
521
518
/// ```rust
522
- /// #![feature(slice_ptr_get, nonnull_slice_from_raw_parts )]
519
+ /// #![feature(slice_ptr_get)]
523
520
/// use std::ptr::NonNull;
524
521
///
525
522
/// let slice: NonNull<[i8]> = NonNull::slice_from_raw_parts(NonNull::dangling(), 3);
@@ -539,7 +536,7 @@ impl<T> NonNull<[T]> {
539
536
/// # Examples
540
537
///
541
538
/// ```rust
542
- /// #![feature(slice_ptr_get, nonnull_slice_from_raw_parts )]
539
+ /// #![feature(slice_ptr_get)]
543
540
/// use std::ptr::NonNull;
544
541
///
545
542
/// let slice: NonNull<[i8]> = NonNull::slice_from_raw_parts(NonNull::dangling(), 3);
@@ -673,7 +670,7 @@ impl<T> NonNull<[T]> {
673
670
/// # Examples
674
671
///
675
672
/// ```
676
- /// #![feature(slice_ptr_get, nonnull_slice_from_raw_parts )]
673
+ /// #![feature(slice_ptr_get)]
677
674
/// use std::ptr::NonNull;
678
675
///
679
676
/// let x = &mut [1, 2, 4];
0 commit comments