2023-01-12 13:40:22 -06:00
|
|
|
// run-rustfix
|
|
|
|
|
2023-01-12 13:25:32 -06:00
|
|
|
fn main() {
|
2023-01-12 13:40:22 -06:00
|
|
|
'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
|
2023-01-12 13:25:32 -06:00
|
|
|
}
|