2024-02-16 20:02:50 +00:00
|
|
|
//@ run-rustfix
|
2023-01-12 19:40:22 +00:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
'label: loop { break 'label }; //~ error: cannot find value `label` in this scope
|
|
|
|
|
'label: loop { break 'label 0 }; //~ error: expected a label, found an identifier
|
|
|
|
|
'label: loop { continue 'label }; //~ error: expected a label, found an identifier
|
|
|
|
|
}
|