blob: 958c90b7c0a16e2358c51fbee15a79d9d14f477c [file] [log] [blame]
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() {}