mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 15:13:48 +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() {
|
|
}
|