File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 203
203
// Language features:
204
204
// tidy-alphabetical-start
205
205
#![ cfg_attr( bootstrap, feature( platform_intrinsics) ) ]
206
+ #![ cfg_attr( not( bootstrap) , feature( freeze_impls) ) ]
206
207
#![ feature( abi_unadjusted) ]
207
208
#![ feature( adt_const_params) ]
208
209
#![ feature( allow_internal_unsafe) ]
Original file line number Diff line number Diff line change @@ -818,13 +818,13 @@ pub trait DiscriminantKind {
818
818
/// will not contain interior mutability, and subsequently allow
819
819
/// placing the constant behind references.
820
820
#[ lang = "freeze" ]
821
- #[ unstable( feature = "freeze" , issue = "60715 " ) ]
821
+ #[ unstable( feature = "freeze" , issue = "121675 " ) ]
822
822
pub unsafe auto trait Freeze { }
823
823
824
- #[ unstable( feature = "freeze" , issue = "60715 " ) ]
824
+ #[ unstable( feature = "freeze" , issue = "121675 " ) ]
825
825
impl < T : ?Sized > !Freeze for UnsafeCell < T > { }
826
826
marker_impls ! {
827
- #[ unstable( feature = "freeze" , issue = "60715 " ) ]
827
+ #[ unstable( feature = "freeze" , issue = "121675 " ) ]
828
828
unsafe Freeze for
829
829
{ T : ?Sized } PhantomData <T >,
830
830
{ T : ?Sized } * const T ,
You can’t perform that action at this time.
0 commit comments