@@ -1449,7 +1449,7 @@ impl<T: ?Sized> *mut T {
1449
1449
///
1450
1450
/// [`ptr::write`]: crate::ptr::write()
1451
1451
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1452
- #[ rustc_const_unstable ( feature = "const_ptr_write" , issue = "86302 " ) ]
1452
+ #[ rustc_const_stable ( feature = "const_ptr_write" , since = "CURRENT_RUSTC_VERSION " ) ]
1453
1453
#[ inline( always) ]
1454
1454
#[ cfg_attr( miri, track_caller) ] // even without panics, this helps for Miri backtraces
1455
1455
pub const unsafe fn write ( self , val : T )
@@ -1468,7 +1468,7 @@ impl<T: ?Sized> *mut T {
1468
1468
/// [`ptr::write_bytes`]: crate::ptr::write_bytes()
1469
1469
#[ doc( alias = "memset" ) ]
1470
1470
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1471
- #[ rustc_const_unstable ( feature = "const_ptr_write" , issue = "86302 " ) ]
1471
+ #[ rustc_const_stable ( feature = "const_ptr_write" , since = "CURRENT_RUSTC_VERSION " ) ]
1472
1472
#[ inline( always) ]
1473
1473
#[ cfg_attr( miri, track_caller) ] // even without panics, this helps for Miri backtraces
1474
1474
pub const unsafe fn write_bytes ( self , val : u8 , count : usize )
@@ -1509,7 +1509,7 @@ impl<T: ?Sized> *mut T {
1509
1509
///
1510
1510
/// [`ptr::write_unaligned`]: crate::ptr::write_unaligned()
1511
1511
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1512
- #[ rustc_const_unstable ( feature = "const_ptr_write" , issue = "86302 " ) ]
1512
+ #[ rustc_const_stable ( feature = "const_ptr_write" , since = "CURRENT_RUSTC_VERSION " ) ]
1513
1513
#[ inline( always) ]
1514
1514
#[ cfg_attr( miri, track_caller) ] // even without panics, this helps for Miri backtraces
1515
1515
pub const unsafe fn write_unaligned ( self , val : T )
0 commit comments