]> git.proxmox.com Git - rustc.git/blame - src/test/ui/hygiene/pattern-macro.rs
New upstream version 1.66.0+dfsg1
[rustc.git] / src / test / ui / hygiene / pattern-macro.rs
CommitLineData
1a4d82fc
JJ
1macro_rules! foo { () => ( x ) }
2
223e47cc 3fn main() {
1a4d82fc 4 let foo!() = 2;
32a655c1 5 x + 1; //~ ERROR cannot find value `x` in this scope
223e47cc 6}