d33b3562e5
Token normalization is merged directly into `bump`. Special "unknown macro variable" diagnostic for unexpected `$`s is removed as preventing legal code from compiling.
11 lines
147 B
Rust
11 lines
147 B
Rust
macro_rules! e {
|
|
($inp:ident) => (
|
|
$nonexistent
|
|
//~^ ERROR expected expression, found `$`
|
|
);
|
|
}
|
|
|
|
fn main() {
|
|
e!(foo);
|
|
}
|