about summary refs log tree commit diff
path: root/tests/ui/parser/macro/trait-non-item-macros.rs
blob: b4140613cbae7adafd80d97926681e4c10eb785c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
macro_rules! bah {
    ($a:expr) => {
        $a
    }; //~^ ERROR macro expansion ignores `expr` metavariable and any tokens following
}

trait Bar {
    bah!(2);
}

fn main() {
    let _recovery_witness: () = 0; //~ ERROR mismatched types
}