File tree 3 files changed +2
-3
lines changed
3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 140
140
#![ feature( const_option_ext) ]
141
141
#![ feature( const_pin) ]
142
142
#![ feature( const_pointer_is_aligned) ]
143
- #![ feature( const_ptr_as_ref) ]
144
143
#![ feature( const_ptr_is_null) ]
145
144
#![ feature( const_ptr_sub_ptr) ]
146
145
#![ feature( const_ptr_write) ]
Original file line number Diff line number Diff line change @@ -394,7 +394,8 @@ impl<T: ?Sized> NonNull<T> {
394
394
///
395
395
/// [the module documentation]: crate::ptr#safety
396
396
#[ stable( feature = "nonnull" , since = "1.25.0" ) ]
397
- #[ rustc_const_unstable( feature = "const_ptr_as_ref" , issue = "91822" ) ]
397
+ #[ cfg_attr( bootstrap, rustc_allow_const_fn_unstable( const_mut_refs) ) ]
398
+ #[ rustc_const_stable( feature = "const_ptr_as_ref" , since = "CURRENT_RUSTC_VERSION" ) ]
398
399
#[ must_use]
399
400
#[ inline( always) ]
400
401
pub const unsafe fn as_mut < ' a > ( & mut self ) -> & ' a mut T {
Original file line number Diff line number Diff line change 30
30
#![ feature( const_option_ext) ]
31
31
#![ feature( const_pin) ]
32
32
#![ feature( const_pointer_is_aligned) ]
33
- #![ feature( const_ptr_as_ref) ]
34
33
#![ feature( const_ptr_write) ]
35
34
#![ feature( const_result) ]
36
35
#![ feature( const_slice_from_ref) ]
You can’t perform that action at this time.
0 commit comments