mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-02 11:44:28 +00:00
13 lines
165 B
Rust
13 lines
165 B
Rust
//@ edition: 2021
|
|
|
|
macro_rules! x {
|
|
($x:item) => {}
|
|
}
|
|
|
|
x! {
|
|
async fn foo() -> impl async Fn() { }
|
|
//~^ ERROR async closures are unstable
|
|
}
|
|
|
|
fn main() {}
|