mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
16 lines
215 B
Rust
16 lines
215 B
Rust
macro_rules! foo() //~ ERROR semicolon
|
|
//~| ERROR unexpected end of macro
|
|
|
|
macro_rules! bar {
|
|
($($tokens:tt)*) => {}
|
|
}
|
|
|
|
bar!( //~ ERROR semicolon
|
|
blah
|
|
blah
|
|
blah
|
|
)
|
|
|
|
fn main() {
|
|
}
|