Skip to content

Commit 795bbfe

Browse files
committed
Add tracking issue
1 parent 9a12d72 commit 795bbfe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

library/core/src/cell.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ impl<T> Cell<T> {
406406
/// assert_eq!(five, 5);
407407
/// ```
408408
#[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")]
410410
pub const fn into_inner(self) -> T {
411411
self.value.into_inner()
412412
}
@@ -669,7 +669,7 @@ impl<T> RefCell<T> {
669669
/// let five = c.into_inner();
670670
/// ```
671671
#[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")]
673673
#[inline]
674674
pub const fn into_inner(self) -> T {
675675
// Since this function takes `self` (the `RefCell`) by value, the
@@ -1682,7 +1682,7 @@ impl<T> UnsafeCell<T> {
16821682
/// ```
16831683
#[inline]
16841684
#[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")]
16861686
pub const fn into_inner(self) -> T {
16871687
self.value
16881688
}

library/core/src/sync/atomic.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ impl AtomicBool {
365365
/// ```
366366
#[inline]
367367
#[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")]
369369
pub const fn into_inner(self) -> bool {
370370
self.v.into_inner() != 0
371371
}
@@ -942,7 +942,7 @@ impl<T> AtomicPtr<T> {
942942
/// ```
943943
#[inline]
944944
#[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")]
946946
pub const fn into_inner(self) -> *mut T {
947947
self.p.into_inner()
948948
}
@@ -1464,7 +1464,7 @@ assert_eq!(some_var.into_inner(), 5);
14641464
```"),
14651465
#[inline]
14661466
#[$stable_access]
1467-
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "none")]
1467+
#[rustc_const_unstable(feature = "const_cell_into_inner", issue = "78729")]
14681468
pub const fn into_inner(self) -> $int_type {
14691469
self.v.into_inner()
14701470
}

0 commit comments

Comments
 (0)