mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-21 20:37:59 +00:00
11 lines
157 B
Rust
11 lines
157 B
Rust
//@ edition:2018
|
|
|
|
macro_rules! r#await {
|
|
() => { println!("Hello, world!") }
|
|
}
|
|
|
|
fn main() {
|
|
await!()
|
|
//~^ ERROR expected expression, found `)`
|
|
}
|