File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -805,7 +805,7 @@ impl<T: ?Sized> Pin<&'static T> {
805
805
///
806
806
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
807
807
/// never ends.
808
- #[ unstable ( feature = "pin_static_ref" , issue = "78186 " ) ]
808
+ #[ stable ( feature = "pin_static_ref" , since = "1.60.0 " ) ]
809
809
#[ rustc_const_unstable( feature = "const_pin" , issue = "76654" ) ]
810
810
pub const fn static_ref ( r : & ' static T ) -> Pin < & ' static T > {
811
811
// SAFETY: The 'static borrow guarantees the data will not be
@@ -858,7 +858,7 @@ impl<T: ?Sized> Pin<&'static mut T> {
858
858
///
859
859
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
860
860
/// never ends.
861
- #[ unstable ( feature = "pin_static_ref" , issue = "78186 " ) ]
861
+ #[ stable ( feature = "pin_static_ref" , since = "1.60.0 " ) ]
862
862
#[ rustc_const_unstable( feature = "const_pin" , issue = "76654" ) ]
863
863
pub const fn static_mut ( r : & ' static mut T ) -> Pin < & ' static mut T > {
864
864
// SAFETY: The 'static borrow guarantees the data will not be
Original file line number Diff line number Diff line change 311
311
#![ feature( panic_internals) ]
312
312
#![ feature( panic_can_unwind) ]
313
313
#![ feature( panic_unwind) ]
314
- #![ feature( pin_static_ref) ]
315
314
#![ feature( platform_intrinsics) ]
316
315
#![ feature( portable_simd) ]
317
316
#![ feature( prelude_import) ]
You can’t perform that action at this time.
0 commit comments