]> git.lizzy.rs Git - rust.git/commitdiff
Assign the tracking issue
authorStjepan Glavina <stjepang@gmail.com>
Mon, 23 Apr 2018 18:34:49 +0000 (20:34 +0200)
committerStjepan Glavina <stjepang@gmail.com>
Mon, 23 Apr 2018 18:34:49 +0000 (20:34 +0200)
src/libcore/cell.rs

index 64dbcbf7ae43972d81e68d3b4115a50f0088266f..1ff187ed3f109722f397f705ce728e886494c87e 100644 (file)
@@ -273,7 +273,7 @@ pub fn get(&self) -> T {
     /// assert_eq!(c.get(), 6);
     /// ```
     #[inline]
-    #[unstable(feature = "cell_update", issue = "0")] // FIXME: issue
+    #[unstable(feature = "cell_update", issue = "50186")]
     pub fn update<F>(&self, f: F) -> T
     where
         F: FnOnce(T) -> T,