mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
16 lines
207 B
Rust
16 lines
207 B
Rust
// check-pass
|
|
// edition:2021
|
|
|
|
macro_rules! create_async {
|
|
($body:block) => {
|
|
async $body
|
|
};
|
|
}
|
|
|
|
async fn other() {}
|
|
|
|
fn main() {
|
|
let y = create_async! {{
|
|
other().await;
|
|
}};
|
|
}
|