summary refs log tree commit diff
path: root/src/test/ui/hygiene/hygienic-label-1.rs
blob: 66361eec21a52b1d8b4bca007d3dcd4efe57b557 (plain)
1
2
3
4
5
6
7
macro_rules! foo {
    () => { break 'x; } //~ ERROR use of undeclared label `'x`
}

pub fn main() {
    'x: loop { foo!() }
}