1- #![ unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
1+ #![ unstable( feature = "ptr_metadata" , issue = "81513 ") ]
22
33use crate :: fmt;
44use crate :: hash:: { Hash , Hasher } ;
@@ -72,7 +72,7 @@ pub trait Pointee {
7272/// assert_eq!(std::mem::size_of::<&T>(), std::mem::size_of::<usize>())
7373/// }
7474/// ```
75- #[ unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
75+ #[ unstable( feature = "ptr_metadata" , issue = "81513 ") ]
7676// NOTE: don’t stabilize this before trait aliases are stable in the language?
7777pub trait Thin = Pointee < Metadata = ( ) > ;
7878
@@ -88,7 +88,7 @@ pub trait Thin = Pointee<Metadata = ()>;
8888///
8989/// assert_eq!(std::ptr::metadata("foo"), 3_usize);
9090/// ```
91- #[ rustc_const_unstable( feature = "ptr_metadata", issue = /* FIXME */ "none ") ]
91+ #[ rustc_const_unstable( feature = "ptr_metadata", issue = " 81513 ") ]
9292#[ inline]
9393pub const fn metadata < T : ?Sized > ( ptr: * const T ) -> <T as Pointee >:: Metadata {
9494 // SAFETY: Accessing the value from the `PtrRepr` union is safe since *const T
@@ -104,8 +104,8 @@ pub const fn metadata<T: ?Sized>(ptr: *const T) -> <T as Pointee>::Metadata {
104104/// For trait objects, the metadata must come from a pointer to the same underlying ereased type.
105105///
106106/// [`slice::from_raw_parts`]: crate::slice::from_raw_parts
107- #[ unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
108- #[ rustc_const_unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
107+ #[ unstable( feature = "ptr_metadata" , issue = "81513 ") ]
108+ #[ rustc_const_unstable( feature = "ptr_metadata" , issue = "81513 ") ]
109109#[ inline]
110110pub const fn from_raw_parts < T : ?Sized > (
111111 data_address : * const ( ) ,
@@ -121,8 +121,8 @@ pub const fn from_raw_parts<T: ?Sized>(
121121/// raw `*mut` pointer is returned, as opposed to a raw `*const` pointer.
122122///
123123/// See the documentation of [`from_raw_parts`] for more details.
124- #[ unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
125- #[ rustc_const_unstable( feature = "ptr_metadata" , issue = /* FIXME */ "none ") ]
124+ #[ unstable( feature = "ptr_metadata" , issue = "81513 ") ]
125+ #[ rustc_const_unstable( feature = "ptr_metadata" , issue = "81513 ") ]
126126#[ inline]
127127pub const fn from_raw_parts_mut < T : ?Sized > (
128128 data_address : * mut ( ) ,
0 commit comments