File tree Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Expand file tree Collapse file tree 3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ mod wake;
1111pub use self :: wake:: { Context , RawWaker , RawWakerVTable , Waker } ;
1212
1313mod ready;
14- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
14+ #[ stable ( feature = "ready_macro" , since = "1.55.0 " ) ]
1515pub use ready:: ready;
Original file line number Diff line number Diff line change 88/// # Examples
99///
1010/// ```
11- /// #![feature(ready_macro)]
12- ///
1311/// use std::task::{ready, Context, Poll};
1412/// use std::future::{self, Future};
1513/// use std::pin::Pin;
2927/// The `ready!` call expands to:
3028///
3129/// ```
32- /// # #![feature(ready_macro)]
33- /// #
3430/// # use std::task::{Context, Poll};
3531/// # use std::future::{self, Future};
3632/// # use std::pin::Pin;
4945/// # Poll::Ready(())
5046/// # }
5147/// ```
52- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
48+ #[ stable ( feature = "ready_macro" , since = "1.55.0 " ) ]
5349#[ rustc_macro_transparency = "semitransparent" ]
5450pub macro ready ( $e: expr) {
5551 match $e {
Original file line number Diff line number Diff line change 304304#![ feature( pin_static_ref) ]
305305#![ feature( prelude_import) ]
306306#![ feature( ptr_internals) ]
307- #![ feature( ready_macro) ]
308307#![ feature( rustc_attrs) ]
309308#![ feature( rustc_private) ]
310309#![ feature( shrink_to) ]
You can’t perform that action at this time.
0 commit comments