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