File tree Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Expand file tree Collapse file tree 3 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -549,8 +549,6 @@ impl<T: Copy> Cell<T> {
549549 /// # Examples
550550 ///
551551 /// ```
552- /// #![feature(cell_update)]
553- ///
554552 /// use std::cell::Cell;
555553 ///
556554 /// let c = Cell::new(5);
@@ -560,7 +558,7 @@ impl<T: Copy> Cell<T> {
560558 /// assert_eq!(c.get(), 6);
561559 /// ```
562560 #[ inline]
563- #[ unstable ( feature = "cell_update" , issue = "50186 " ) ]
561+ #[ stable ( feature = "cell_update" , since = "CURRENT_RUSTC_VERSION " ) ]
564562 pub fn update < F > ( & self , f : F ) -> T
565563 where
566564 F : FnOnce ( T ) -> T ,
Original file line number Diff line number Diff line change 1212#![ feature( async_iterator) ]
1313#![ feature( bigint_helper_methods) ]
1414#![ feature( bstr) ]
15- #![ feature( cell_update) ]
1615#![ feature( char_max_len) ]
1716#![ feature( clone_to_uninit) ]
1817#![ feature( const_eval_select) ]
Original file line number Diff line number Diff line change 11#![ feature( rustc_private) ]
22#![ feature( cfg_match) ]
3- #![ feature( cell_update) ]
43#![ feature( float_gamma) ]
54#![ feature( float_erf) ]
65#![ feature( map_try_insert) ]
You can’t perform that action at this time.
0 commit comments