about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWaffle Lapkin <waffle.lapkin@gmail.com>2021-09-11 00:07:14 +0300
committerGitHub <noreply@github.com>2021-09-11 00:07:14 +0300
commit2c30162380ac06e5e6b084164ee6ba596a9398f0 (patch)
tree34632fe8974e917b183e37ae93a8d2be4746b638
parentefeb46187398199dd9ac1b1e0c1ba43180de9b4f (diff)
downloadrust-2c30162380ac06e5e6b084164ee6ba596a9398f0.tar.gz
rust-2c30162380ac06e5e6b084164ee6ba596a9398f0.zip
Fill in the tracking issue for `#![feature(const_unsafecell_get_mut)]`
-rw-r--r--library/core/src/cell.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/cell.rs b/library/core/src/cell.rs
index 25c153dae04..e56b631dbaf 100644
--- a/library/core/src/cell.rs
+++ b/library/core/src/cell.rs
@@ -1916,7 +1916,7 @@ impl<T: ?Sized> UnsafeCell<T> {
     /// ```
     #[inline(always)]
     #[stable(feature = "unsafe_cell_get_mut", since = "1.50.0")]
-    #[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "none")]
+    #[rustc_const_unstable(feature = "const_unsafecell_get_mut", issue = "88836")]
     pub const fn get_mut(&mut self) -> &mut T {
         &mut self.value
     }