@@ -333,7 +333,7 @@ impl<T: Copy> Clone for Cell<T> {
333
333
}
334
334
335
335
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
336
- #[ rustc_const_unstable( feature = "const_default" , issue = "none " ) ]
336
+ #[ rustc_const_unstable( feature = "const_default" , issue = "67792 " ) ]
337
337
impl < T : ~const Default > const Default for Cell < T > {
338
338
/// Creates a `Cell<T>`, with the `Default` value for T.
339
339
#[ inline]
@@ -1327,7 +1327,7 @@ impl<T: Clone> Clone for RefCell<T> {
1327
1327
}
1328
1328
1329
1329
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1330
- #[ rustc_const_unstable( feature = "const_default" , issue = "none " ) ]
1330
+ #[ rustc_const_unstable( feature = "const_default" , issue = "67792 " ) ]
1331
1331
impl < T : ~const Default > const Default for RefCell < T > {
1332
1332
/// Creates a `RefCell<T>`, with the `Default` value for T.
1333
1333
#[ inline]
@@ -2335,7 +2335,7 @@ impl<T: ?Sized> UnsafeCell<T> {
2335
2335
}
2336
2336
2337
2337
#[ stable( feature = "unsafe_cell_default" , since = "1.10.0" ) ]
2338
- #[ rustc_const_unstable( feature = "const_default" , issue = "none " ) ]
2338
+ #[ rustc_const_unstable( feature = "const_default" , issue = "67792 " ) ]
2339
2339
impl < T : ~const Default > const Default for UnsafeCell < T > {
2340
2340
/// Creates an `UnsafeCell`, with the `Default` value for T.
2341
2341
fn default ( ) -> UnsafeCell < T > {
@@ -2443,7 +2443,7 @@ impl<T: ?Sized> SyncUnsafeCell<T> {
2443
2443
}
2444
2444
2445
2445
#[ unstable( feature = "sync_unsafe_cell" , issue = "95439" ) ]
2446
- #[ rustc_const_unstable( feature = "const_default" , issue = "none " ) ]
2446
+ #[ rustc_const_unstable( feature = "const_default" , issue = "67792 " ) ]
2447
2447
impl < T : ~const Default > const Default for SyncUnsafeCell < T > {
2448
2448
/// Creates an `SyncUnsafeCell`, with the `Default` value for T.
2449
2449
fn default ( ) -> SyncUnsafeCell < T > {
0 commit comments