1
Fork 0

Assign the tracking issue

This commit is contained in:
Stjepan Glavina 2018-04-23 20:34:49 +02:00
parent 1c0db245e0
commit 29e9de85d6

View file

@ -273,7 +273,7 @@ impl<T:Copy> Cell<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,