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 @@ -798,7 +798,7 @@ impl<T: ?Sized> Pin<&'static T> {
798
798
///
799
799
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
800
800
/// never ends.
801
- #[ unstable ( feature = "pin_static_ref" , issue = "78186 " ) ]
801
+ #[ stable ( feature = "pin_static_ref" , since = "1.60.0 " ) ]
802
802
#[ rustc_const_unstable( feature = "const_pin" , issue = "76654" ) ]
803
803
pub const fn static_ref ( r : & ' static T ) -> Pin < & ' static T > {
804
804
// SAFETY: The 'static borrow guarantees the data will not be
@@ -851,7 +851,7 @@ impl<T: ?Sized> Pin<&'static mut T> {
851
851
///
852
852
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
853
853
/// never ends.
854
- #[ unstable ( feature = "pin_static_ref" , issue = "78186 " ) ]
854
+ #[ stable ( feature = "pin_static_ref" , since = "1.60.0 " ) ]
855
855
#[ rustc_const_unstable( feature = "const_pin" , issue = "76654" ) ]
856
856
pub const fn static_mut ( r : & ' static mut T ) -> Pin < & ' static mut T > {
857
857
// SAFETY: The 'static borrow guarantees the data will not be
Original file line number Diff line number Diff line change 310
310
#![ feature( panic_internals) ]
311
311
#![ feature( panic_can_unwind) ]
312
312
#![ feature( panic_unwind) ]
313
- #![ feature( pin_static_ref) ]
314
313
#![ feature( platform_intrinsics) ]
315
314
#![ feature( portable_simd) ]
316
315
#![ feature( prelude_import) ]
You can’t perform that action at this time.
0 commit comments