]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/unused_labels.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / unused_labels.stderr
index 338eb2f1551f53c70aa5fb2e4d119e7382ebeb63..d2ca0f1b57f0ee153f666335a0e0ce2d86560682 100644 (file)
@@ -1,24 +1,30 @@
 error: unused label `'label`
-  --> $DIR/unused_labels.rs:8:5
+  --> $DIR/unused_labels.rs:5:5
    |
-8  | /     'label: for i in 1..2 {
-9  | |         if i > 4 { continue }
-10 | |     }
+LL | /     'label: for i in 1..2 {
+LL | |         if i > 4 {
+LL | |             continue;
+LL | |         }
+LL | |     }
    | |_____^
    |
-   = note: `-D unused-label` implied by `-D warnings`
+   = note: `-D clippy::unused-label` implied by `-D warnings`
 
 error: unused label `'a`
-  --> $DIR/unused_labels.rs:21:5
+  --> $DIR/unused_labels.rs:19:5
    |
-21 |     'a: loop { break }
-   |     ^^^^^^^^^^^^^^^^^^
+LL | /     'a: loop {
+LL | |         break;
+LL | |     }
+   | |_____^
 
 error: unused label `'same_label_in_two_fns`
   --> $DIR/unused_labels.rs:32:5
    |
-32 | /     'same_label_in_two_fns: loop {
-33 | |         let _ = 1;
-34 | |     }
+LL | /     'same_label_in_two_fns: loop {
+LL | |         let _ = 1;
+LL | |     }
    | |_____^
 
+error: aborting due to 3 previous errors
+