2017-02-07 14:05:30 -06:00
|
|
|
error: unused label `'label`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_labels.rs:5:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / 'label: for i in 1..2 {
|
|
|
|
LL | | if i > 4 {
|
|
|
|
LL | | continue;
|
|
|
|
LL | | }
|
|
|
|
LL | | }
|
2017-04-23 08:25:22 -05:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::unused-label` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: unused label `'a`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_labels.rs:19:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / 'a: loop {
|
|
|
|
LL | | break;
|
|
|
|
LL | | }
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: unused label `'same_label_in_two_fns`
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unused_labels.rs:32:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | / 'same_label_in_two_fns: loop {
|
|
|
|
LL | | let _ = 1;
|
|
|
|
LL | | }
|
2017-04-23 08:25:22 -05:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2018-01-16 10:06:27 -06:00
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|