]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/macro/issue-33569.rs
83f8a562a03ad4a2ae5b206c1672fb1155de8d58
[rust.git] / src / test / ui / parser / macro / issue-33569.rs
1 macro_rules! foo {
2     { $+ } => { //~ ERROR expected identifier, found `+`
3                 //~^ ERROR missing fragment specifier
4         $(x)(y) //~ ERROR expected `*` or `+`
5     }
6 }
7
8 foo!();