Skip to content

Commit 594f6f9

Browse files
authored
Rollup merge of rust-lang#93580 - m-ou-se:stabilize-pin-static-ref, r=scottmcm
Stabilize pin_static_ref. FCP finished here: rust-lang#78186 (comment) Closes rust-lang#78186
2 parents 7e777df + c05276a commit 594f6f9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

library/core/src/pin.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ impl<T: ?Sized> Pin<&'static T> {
805805
///
806806
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
807807
/// never ends.
808-
#[unstable(feature = "pin_static_ref", issue = "78186")]
808+
#[stable(feature = "pin_static_ref", since = "1.60.0")]
809809
#[rustc_const_unstable(feature = "const_pin", issue = "76654")]
810810
pub const fn static_ref(r: &'static T) -> Pin<&'static T> {
811811
// SAFETY: The 'static borrow guarantees the data will not be
@@ -858,7 +858,7 @@ impl<T: ?Sized> Pin<&'static mut T> {
858858
///
859859
/// This is safe, because `T` is borrowed for the `'static` lifetime, which
860860
/// never ends.
861-
#[unstable(feature = "pin_static_ref", issue = "78186")]
861+
#[stable(feature = "pin_static_ref", since = "1.60.0")]
862862
#[rustc_const_unstable(feature = "const_pin", issue = "76654")]
863863
pub const fn static_mut(r: &'static mut T) -> Pin<&'static mut T> {
864864
// SAFETY: The 'static borrow guarantees the data will not be

library/std/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,6 @@
311311
#![feature(panic_internals)]
312312
#![feature(panic_can_unwind)]
313313
#![feature(panic_unwind)]
314-
#![feature(pin_static_ref)]
315314
#![feature(platform_intrinsics)]
316315
#![feature(portable_simd)]
317316
#![feature(prelude_import)]

0 commit comments

Comments
 (0)