blob: 069d181e96267a5ccd32c5e129d68bb3d930f76f [file] [log] [blame] [edit]
macro_rules! foo {
{ $+ } => { //~ ERROR expected identifier, found `+`
//~^ ERROR missing fragment specifier
//~| ERROR missing fragment specifier
//~| WARN this was previously accepted
$(x)(y) //~ ERROR expected one of: `*`, `+`, or `?`
}
}
foo!();
fn main() {}