mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 01:10:36 +00:00
12 lines
220 B
Rust
12 lines
220 B
Rust
macro_rules! g {
|
|
($inp:ident) => (
|
|
{ $inp $nonexistent }
|
|
//~^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `$`
|
|
);
|
|
}
|
|
|
|
fn main() {
|
|
let foo = 0;
|
|
g!(foo);
|
|
}
|