]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/macro-match-nonterminal.rs
Add 'compiler/rustc_codegen_gcc/' from commit 'afae271d5d3719eeb92c18bc004bb6d1965a5f3f'
[rust.git] / src / test / ui / macros / macro-match-nonterminal.rs
1 macro_rules! test {
2     ($a, $b) => {
3         //~^ ERROR missing fragment
4         //~| ERROR missing fragment
5         //~| WARN this was previously accepted
6         ()
7     };
8 }
9
10 fn main() {
11     test!()
12 }