Skip to content

Commit 5786931

Browse files
committed
revert stabilization of core::task::ready!
1 parent a57c18b commit 5786931

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/core/src/task/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mod wake;
1111
pub use self::wake::{Context, RawWaker, RawWakerVTable, Waker};
1212

1313
mod ready;
14-
#[stable(feature = "ready_macro", since = "1.56.0")]
14+
#[unstable(feature = "ready_macro", issue = "70922")]
1515
pub use ready::ready;
1616
#[unstable(feature = "poll_ready", issue = "none")]
1717
pub use ready::Ready;

library/core/src/task/ready.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ use core::task::Poll;
5050
/// # Poll::Ready(())
5151
/// # }
5252
/// ```
53-
#[stable(feature = "ready_macro", since = "1.56.0")]
53+
#[unstable(feature = "ready_macro", issue = "70922")]
5454
#[rustc_macro_transparency = "semitransparent"]
5555
pub macro ready($e:expr) {
5656
match $e {

0 commit comments

Comments
 (0)