2015-01-02 16:00:06 -06:00
|
|
|
macro_rules! g {
|
2013-05-22 15:07:02 -05:00
|
|
|
($inp:ident) => (
|
2015-01-02 16:00:06 -06:00
|
|
|
{ $inp $nonexistent }
|
2020-02-16 07:47:24 -06:00
|
|
|
//~^ ERROR expected one of `!`, `.`, `::`, `;`, `?`, `{`, `}`, or an operator, found `$`
|
2013-05-22 15:07:02 -05:00
|
|
|
);
|
2015-01-02 16:44:21 -06:00
|
|
|
}
|
2013-05-22 15:07:02 -05:00
|
|
|
|
|
|
|
fn main() {
|
2018-12-16 11:23:27 -06:00
|
|
|
let foo = 0;
|
2015-01-02 16:00:06 -06:00
|
|
|
g!(foo);
|
2013-05-22 15:07:02 -05:00
|
|
|
}
|