rust/src/test/ui/parser/macro/trait-non-item-macros.rs

11 lines
124 B
Rust
Raw Normal View History

macro_rules! bah {
($a:expr) => ($a)
//~^ ERROR expected one of `async`
}
trait bar {
bah!(2);
}
fn main() {}