@@ -1309,7 +1309,7 @@ impl<T: ?Sized> *mut T {
1309
1309
/// See [`ptr::copy`] for safety concerns and examples.
1310
1310
///
1311
1311
/// [`ptr::copy`]: crate::ptr::copy()
1312
- #[ rustc_const_unstable ( feature = "const_intrinsic_copy" , issue = "80697 " ) ]
1312
+ #[ rustc_const_stable ( feature = "const_intrinsic_copy" , since = "1.63.0 " ) ]
1313
1313
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1314
1314
#[ inline( always) ]
1315
1315
pub const unsafe fn copy_to ( self , dest : * mut T , count : usize )
@@ -1328,7 +1328,7 @@ impl<T: ?Sized> *mut T {
1328
1328
/// See [`ptr::copy_nonoverlapping`] for safety concerns and examples.
1329
1329
///
1330
1330
/// [`ptr::copy_nonoverlapping`]: crate::ptr::copy_nonoverlapping()
1331
- #[ rustc_const_unstable ( feature = "const_intrinsic_copy" , issue = "80697 " ) ]
1331
+ #[ rustc_const_stable ( feature = "const_intrinsic_copy" , since = "1.63.0 " ) ]
1332
1332
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1333
1333
#[ inline( always) ]
1334
1334
pub const unsafe fn copy_to_nonoverlapping ( self , dest : * mut T , count : usize )
@@ -1347,7 +1347,7 @@ impl<T: ?Sized> *mut T {
1347
1347
/// See [`ptr::copy`] for safety concerns and examples.
1348
1348
///
1349
1349
/// [`ptr::copy`]: crate::ptr::copy()
1350
- #[ rustc_const_unstable ( feature = "const_intrinsic_copy" , issue = "80697 " ) ]
1350
+ #[ rustc_const_stable ( feature = "const_intrinsic_copy" , since = "1.63.0 " ) ]
1351
1351
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1352
1352
#[ inline( always) ]
1353
1353
pub const unsafe fn copy_from ( self , src : * const T , count : usize )
@@ -1366,7 +1366,7 @@ impl<T: ?Sized> *mut T {
1366
1366
/// See [`ptr::copy_nonoverlapping`] for safety concerns and examples.
1367
1367
///
1368
1368
/// [`ptr::copy_nonoverlapping`]: crate::ptr::copy_nonoverlapping()
1369
- #[ rustc_const_unstable ( feature = "const_intrinsic_copy" , issue = "80697 " ) ]
1369
+ #[ rustc_const_stable ( feature = "const_intrinsic_copy" , since = "1.63.0 " ) ]
1370
1370
#[ stable( feature = "pointer_methods" , since = "1.26.0" ) ]
1371
1371
#[ inline( always) ]
1372
1372
pub const unsafe fn copy_from_nonoverlapping ( self , src : * const T , count : usize )
0 commit comments