about summary refs log tree commit diff
path: root/tests/ui/macros/macro-match-nonterminal.rs
blob: 1643cddb192beacb8e5336b874f16083fc8493a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
macro_rules! test {
    ($a, $b) => {
        //~^ ERROR missing fragment
        //~| ERROR missing fragment
        ()
    };
}

fn main() {
    test!() //~ ERROR unexpected end of macro invocation
}