11 lines
214 B
Rust
11 lines
214 B
Rust
macro_rules! foo {
|
|
($rest: tt) => {
|
|
bar(baz: $rest) //~ ERROR invalid `struct` delimiters or `fn` call arguments
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
foo!(true);
|
|
//~^ ERROR expected identifier, found keyword
|
|
}
|