blob: 7288fa858dbee4168b5dd4a1300648c6597353d4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
macro_rules! foo {
{ $+ } => { //~ ERROR expected identifier, found `+`
//~^ ERROR missing fragment specifier
$(x)(y) //~ ERROR expected one of: `*`, `+`, or `?`
}
}
foo!(); //~ ERROR unexpected end
fn main() {}
|