summaryrefslogtreecommitdiffstats
path: root/src/test/ui/parser/macro/trait-non-item-macros.rs
blob: 97fb564bf647958f7d37926e23d388a7beecc84f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
macro_rules! bah {
    ($a:expr) => {
        $a
    }; //~^ ERROR macro expansion ignores token `2` and any following
}

trait Bar {
    bah!(2);
}

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