2018-05-17 19:20:30 -05:00
|
|
|
#[allow(unreachable_code, unused_labels)]
|
2017-10-09 17:21:09 -05:00
|
|
|
fn main() {
|
|
|
|
'foo: loop {
|
2017-11-20 06:13:27 -06:00
|
|
|
break 'fo; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
'bar: loop {
|
2017-11-20 06:13:27 -06:00
|
|
|
continue 'bor; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
'longlabel: loop {
|
|
|
|
'longlabel1: loop {
|
2017-11-20 06:13:27 -06:00
|
|
|
break 'longlable; //~ ERROR use of undeclared label
|
2017-10-09 17:21:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|