mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
10 lines
161 B
Rust
10 lines
161 B
Rust
macro_rules! foo {
|
|
( $( $i:ident ),* ) => {
|
|
$[count($i)]
|
|
//~^ ERROR expected `(` or `{`, found `[`
|
|
//~| ERROR
|
|
};
|
|
}
|
|
|
|
fn main() {}
|