rust/tests/ui/issues/issue-6596-2.rs

12 lines
220 B
Rust
Raw Normal View History

macro_rules! g {
2013-05-22 15:07:02 -05:00
($inp:ident) => (
{ $inp $nonexistent }
//~^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `$`
2013-05-22 15:07:02 -05:00
);
}
2013-05-22 15:07:02 -05:00
fn main() {
let foo = 0;
g!(foo);
2013-05-22 15:07:02 -05:00
}