We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#![feature(const_unsafecell_get_mut)]
1 parent efeb461 commit 2c30162Copy full SHA for 2c30162
library/core/src/cell.rs
@@ -1916,7 +1916,7 @@ impl<T: ?Sized> UnsafeCell<T> {
1916
/// ```
1917
#[inline(always)]
1918
#[stable(feature = "unsafe_cell_get_mut", since = "1.50.0")]
1919
- #[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "none")]
+ #[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "88836")]
1920
pub const fn get_mut(&mut self) -> &mut T {
1921
&mut self.value
1922
}
0 commit comments