2017-02-07 21:05:30 +01:00
|
|
|
error: unused label `'label`
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/unused_labels.rs:14:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
14 | / 'label: for i in 1..2 {
|
|
|
|
15 | | if i > 4 {
|
|
|
|
16 | | continue;
|
|
|
|
17 | | }
|
|
|
|
18 | | }
|
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`
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/unused_labels.rs:28:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
28 | / 'a: loop {
|
|
|
|
29 | | break;
|
|
|
|
30 | | }
|
|
|
|
| |_____^
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
|
|
error: unused label `'same_label_in_two_fns`
|
2018-12-10 06:27:19 +01:00
|
|
|
--> $DIR/unused_labels.rs:41:5
|
2017-02-07 21:05:30 +01:00
|
|
|
|
|
2018-12-10 06:27:19 +01:00
|
|
|
41 | / 'same_label_in_two_fns: loop {
|
|
|
|
42 | | let _ = 1;
|
|
|
|
43 | | }
|
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
|
|
|
|
|