10 lines
143 B
Rust
10 lines
143 B
Rust
|
macro_rules! e( //~ ERROR unknown macro variable `nonexistent`
|
||
|
($inp:ident) => (
|
||
|
$nonexistent
|
||
|
);
|
||
|
)
|
||
|
|
||
|
fn main() {
|
||
|
e!(foo);
|
||
|
}
|