about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/boxed.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs
index 78a4b337711..1f1e98a2b60 100644
--- a/src/liballoc/boxed.rs
+++ b/src/liballoc/boxed.rs
@@ -322,7 +322,7 @@ impl<T: ?Sized> Box<T> {
     ///     let ptr = Box::into_raw_non_null(x);
     /// }
     /// ```
-    #[stable(feature = "nonnull", since = "1.24.0")]
+    #[unstable(feature = "nonnull", issue = "27730")]
     #[inline]
     pub fn into_raw_non_null(b: Box<T>) -> NonNull<T> {
         Box::into_unique(b).into()