summary refs log tree commit diff
path: root/src/test/ui/parser/macro/trait-non-item-macros.rs
blob: 958c90b7c0a16e2358c51fbee15a79d9d14f477c (plain)
1
2
3
4
5
6
7
8
9
10
macro_rules! bah {
    ($a:expr) => ($a)
    //~^ ERROR expected one of `async`, `const`, `extern`, `fn`, `type`, or `unsafe`, found `2`
}

trait bar {
    bah!(2);
}

fn main() {}