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 `)`
|
|
}
|