mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 11:37:50 +00:00
11 lines
147 B
Rust
11 lines
147 B
Rust
macro_rules! e {
|
|
($inp:ident) => (
|
|
$nonexistent
|
|
//~^ ERROR expected expression, found `$`
|
|
);
|
|
}
|
|
|
|
fn main() {
|
|
e!(foo);
|
|
}
|