]> git.proxmox.com Git - rustc.git/blob - tests/ui/hygiene/hygienic-label-2.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / hygiene / hygienic-label-2.rs
1 macro_rules! foo {
2 ($e: expr) => { 'x: loop { $e } }
3 }
4
5 pub fn main() {
6 foo!(break 'x); //~ ERROR use of undeclared label `'x`
7 }