We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9377340 commit 5dcce51Copy full SHA for 5dcce51
src/libcore/cell.rs
@@ -262,6 +262,8 @@ impl<T:Copy> Cell<T> {
262
/// # Examples
263
///
264
/// ```
265
+ /// #![feature(cell_update)]
266
+ ///
267
/// use std::cell::Cell;
268
269
/// let c = Cell::new(5);
src/libcore/tests/lib.rs
@@ -12,6 +12,7 @@
12
13
#![feature(ascii_ctype)]
14
#![feature(box_syntax)]
15
+#![feature(cell_update)]
16
#![feature(core_float)]
17
#![feature(core_private_bignum)]
18
#![feature(core_private_diy_float)]
0 commit comments