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