File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -406,7 +406,7 @@ impl<T> Cell<T> {
406
406
/// assert_eq!(five, 5);
407
407
/// ```
408
408
#[ stable( feature = "move_cell" , since = "1.17.0" ) ]
409
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
409
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
410
410
pub const fn into_inner ( self ) -> T {
411
411
self . value . into_inner ( )
412
412
}
@@ -669,7 +669,7 @@ impl<T> RefCell<T> {
669
669
/// let five = c.into_inner();
670
670
/// ```
671
671
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
672
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
672
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
673
673
#[ inline]
674
674
pub const fn into_inner ( self ) -> T {
675
675
// Since this function takes `self` (the `RefCell`) by value, the
@@ -1682,7 +1682,7 @@ impl<T> UnsafeCell<T> {
1682
1682
/// ```
1683
1683
#[ inline]
1684
1684
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
1685
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
1685
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
1686
1686
pub const fn into_inner ( self ) -> T {
1687
1687
self . value
1688
1688
}
Original file line number Diff line number Diff line change @@ -365,7 +365,7 @@ impl AtomicBool {
365
365
/// ```
366
366
#[ inline]
367
367
#[ stable( feature = "atomic_access" , since = "1.15.0" ) ]
368
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
368
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
369
369
pub const fn into_inner ( self ) -> bool {
370
370
self . v . into_inner ( ) != 0
371
371
}
@@ -942,7 +942,7 @@ impl<T> AtomicPtr<T> {
942
942
/// ```
943
943
#[ inline]
944
944
#[ stable( feature = "atomic_access" , since = "1.15.0" ) ]
945
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
945
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
946
946
pub const fn into_inner ( self ) -> * mut T {
947
947
self . p . into_inner ( )
948
948
}
@@ -1464,7 +1464,7 @@ assert_eq!(some_var.into_inner(), 5);
1464
1464
```" ) ,
1465
1465
#[ inline]
1466
1466
#[ $stable_access]
1467
- #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "none " ) ]
1467
+ #[ rustc_const_unstable( feature = "const_cell_into_inner" , issue = "78729 " ) ]
1468
1468
pub const fn into_inner( self ) -> $int_type {
1469
1469
self . v. into_inner( )
1470
1470
}
You can’t perform that action at this time.
0 commit comments