]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/macro/issue-33569.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / parser / macro / issue-33569.rs
CommitLineData
3157f602
XL
1macro_rules! foo {
2 { $+ } => { //~ ERROR expected identifier, found `+`
8bb4bdeb 3 //~^ ERROR missing fragment specifier
dc9dc135 4 $(x)(y) //~ ERROR expected one of: `*`, `+`, or `?`
54a0048b
SL
5 }
6}
8bb4bdeb
XL
7
8foo!();
ba9703b0
XL
9
10fn main() {}