10 lines
161 B
Rust
10 lines
161 B
Rust
macro_rules! foo {
|
|
( $( $i:ident ),* ) => {
|
|
$[count($i)]
|
|
//~^ ERROR expected `(` or `{`, found `[`
|
|
//~| ERROR
|
|
};
|
|
}
|
|
|
|
fn main() {}
|