blob: 7288fa858dbee4168b5dd4a1300648c6597353d4 [file] [log] [blame]
macro_rules! foo {
{ $+ } => { //~ ERROR expected identifier, found `+`
//~^ ERROR missing fragment specifier
$(x)(y) //~ ERROR expected one of: `*`, `+`, or `?`
}
}
foo!(); //~ ERROR unexpected end
fn main() {}