]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/macros-no-semicolon-items.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[rust.git] / src / test / ui / parser / macros-no-semicolon-items.rs
1 macro_rules! foo()  //~ ERROR semicolon
2                     //~| ERROR unexpected end of macro
3
4 macro_rules! bar {
5     ($($tokens:tt)*) => {}
6 }
7
8 bar!( //~ ERROR semicolon
9     blah
10     blah
11     blah
12 )
13
14 fn main() {
15 }