rust/tests/ui/label/label-static.rs
2025-08-22 13:16:44 +08:00

6 lines
146 B
Rust

fn main() {
'static: loop { //~ ERROR labels cannot use keyword names
break 'static //~ ERROR labels cannot use keyword names
}
}