forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#62292 - Centril:split-async-closures, r=cra…
…mertj Move `async || ...` closures into `#![feature(async_closure)]` The `async || expr` syntax is moved out from `#![feature(async_await)]` into its own gate `#![feature(async_closure)]`. New tracking issue: rust-lang#62290 Closes rust-lang#62214. cc rust-lang#62149 r? @varkor
- Loading branch information
Showing
25 changed files
with
260 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// compile-pass | ||
// edition:2018 | ||
|
||
#![feature(async_await, async_closure)] | ||
|
||
macro_rules! match_expr { | ||
($x:expr) => {} | ||
} | ||
|
||
fn main() { | ||
match_expr!(async || {}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// run-pass | ||
|
||
// edition:2018 | ||
// aux-build:arc_wake.rs | ||
|
||
#![feature(async_await, async_closure)] | ||
|
||
extern crate arc_wake; | ||
|
||
use std::pin::Pin; | ||
use std::future::Future; | ||
use std::sync::{ | ||
Arc, | ||
atomic::{self, AtomicUsize}, | ||
}; | ||
use std::task::{Context, Poll}; | ||
use arc_wake::ArcWake; | ||
|
||
struct Counter { | ||
wakes: AtomicUsize, | ||
} | ||
|
||
impl ArcWake for Counter { | ||
fn wake(self: Arc<Self>) { | ||
Self::wake_by_ref(&self) | ||
} | ||
fn wake_by_ref(arc_self: &Arc<Self>) { | ||
arc_self.wakes.fetch_add(1, atomic::Ordering::SeqCst); | ||
} | ||
} | ||
|
||
struct WakeOnceThenComplete(bool); | ||
|
||
fn wake_and_yield_once() -> WakeOnceThenComplete { WakeOnceThenComplete(false) } | ||
|
||
impl Future for WakeOnceThenComplete { | ||
type Output = (); | ||
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<()> { | ||
if self.0 { | ||
Poll::Ready(()) | ||
} else { | ||
cx.waker().wake_by_ref(); | ||
self.0 = true; | ||
Poll::Pending | ||
} | ||
} | ||
} | ||
|
||
fn async_closure(x: u8) -> impl Future<Output = u8> { | ||
(async move |x: u8| -> u8 { | ||
wake_and_yield_once().await; | ||
x | ||
})(x) | ||
} | ||
|
||
fn test_future_yields_once_then_returns<F, Fut>(f: F) | ||
where | ||
F: FnOnce(u8) -> Fut, | ||
Fut: Future<Output = u8>, | ||
{ | ||
let mut fut = Box::pin(f(9)); | ||
let counter = Arc::new(Counter { wakes: AtomicUsize::new(0) }); | ||
let waker = ArcWake::into_waker(counter.clone()); | ||
let mut cx = Context::from_waker(&waker); | ||
assert_eq!(0, counter.wakes.load(atomic::Ordering::SeqCst)); | ||
assert_eq!(Poll::Pending, fut.as_mut().poll(&mut cx)); | ||
assert_eq!(1, counter.wakes.load(atomic::Ordering::SeqCst)); | ||
assert_eq!(Poll::Ready(9), fut.as_mut().poll(&mut cx)); | ||
} | ||
|
||
fn main() { | ||
macro_rules! test { | ||
($($fn_name:expr,)*) => { $( | ||
test_future_yields_once_then_returns($fn_name); | ||
)* } | ||
} | ||
|
||
test! { | ||
async_closure, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
// build-pass (FIXME(62277): could be check-pass?) | ||
// edition:2018 | ||
|
||
#![feature(async_await, await_macro)] | ||
#![feature(async_await)] | ||
|
||
macro_rules! match_expr { | ||
($x:expr) => {} | ||
} | ||
|
||
fn main() { | ||
match_expr!(async {}); | ||
match_expr!(async || {}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// edition:2018 | ||
// gate-test-async_closure | ||
|
||
fn f() { | ||
let _ = async || {}; //~ ERROR async closures are unstable | ||
} | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
error[E0658]: async closures are unstable | ||
--> $DIR/feature-async-closure.rs:5:13 | ||
| | ||
LL | let _ = async || {}; | ||
| ^^^^^ | ||
| | ||
= note: for more information, see https://github.com/rust-lang/rust/issues/62290 | ||
= help: add #![feature(async_closure)] to the crate attributes to enable | ||
|
||
error: aborting due to previous error | ||
|
||
For more information about this error, try `rustc --explain E0658`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.