File tree 3 files changed +2
-7
lines changed
3 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ mod wake;
11
11
pub use self :: wake:: { Context , RawWaker , RawWakerVTable , Waker } ;
12
12
13
13
mod ready;
14
- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
14
+ #[ stable ( feature = "ready_macro" , since = "1.55.0 " ) ]
15
15
pub use ready:: ready;
Original file line number Diff line number Diff line change 8
8
/// # Examples
9
9
///
10
10
/// ```
11
- /// #![feature(ready_macro)]
12
- ///
13
11
/// use std::task::{ready, Context, Poll};
14
12
/// use std::future::{self, Future};
15
13
/// use std::pin::Pin;
29
27
/// The `ready!` call expands to:
30
28
///
31
29
/// ```
32
- /// # #![feature(ready_macro)]
33
- /// #
34
30
/// # use std::task::{Context, Poll};
35
31
/// # use std::future::{self, Future};
36
32
/// # use std::pin::Pin;
49
45
/// # Poll::Ready(())
50
46
/// # }
51
47
/// ```
52
- #[ unstable ( feature = "ready_macro" , issue = "70922 " ) ]
48
+ #[ stable ( feature = "ready_macro" , since = "1.55.0 " ) ]
53
49
#[ rustc_macro_transparency = "semitransparent" ]
54
50
pub macro ready ( $e: expr) {
55
51
match $e {
Original file line number Diff line number Diff line change 304
304
#![ feature( pin_static_ref) ]
305
305
#![ feature( prelude_import) ]
306
306
#![ feature( ptr_internals) ]
307
- #![ feature( ready_macro) ]
308
307
#![ feature( rustc_attrs) ]
309
308
#![ feature( rustc_private) ]
310
309
#![ feature( shrink_to) ]
You can’t perform that action at this time.
0 commit comments