blob: 5da54451346a54acebdc8c7c001160c81e176206 [file] [log] [blame]
macro_rules! e {
($inp:ident) => (
$nonexistent
//~^ ERROR unknown macro variable `nonexistent`
);
}
fn main() {
e!(foo);
}