Skip to content

Commit 2c30162

Browse files
authored
Fill in the tracking issue for #![feature(const_unsafecell_get_mut)]
1 parent efeb461 commit 2c30162

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ impl<T: ?Sized> UnsafeCell<T> {
19161916
/// ```
19171917
#[inline(always)]
19181918
#[stable(feature = "unsafe_cell_get_mut", since = "1.50.0")]
1919-
#[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "none")]
1919+
#[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "88836")]
19201920
pub const fn get_mut(&mut self) -> &mut T {
19211921
&mut self.value
19221922
}

0 commit comments

Comments
 (0)