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