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