Files
rust/tests/ui/label/label-static.rs

6 lines
146 B
Rust
Raw Permalink Normal View History

fn main() {
2025-08-22 13:06:49 +08:00
'static: loop { //~ ERROR labels cannot use keyword names
break 'static //~ ERROR labels cannot use keyword names
}
}