]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/else_if_without_else.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / else_if_without_else.stderr
index 9eddd4ab30d4da575ce0d632721bdb3f8a77663c..270009067546a5f3b7852a7c694024186fcbfb81 100644 (file)
@@ -1,22 +1,27 @@
 error: if expression with an `else if`, but without a final `else`
-  --> $DIR/else_if_without_else.rs:51:12
+  --> $DIR/else_if_without_else.rs:45:12
    |
-51 |       } else if bla2() { //~ ERROR else if without else
+LL |       } else if bla2() {
    |  ____________^
-52 | |         println!("else if");
-53 | |     }
-   | |_____^ help: add an `else` block here
+LL | |         //~ ERROR else if without else
+LL | |         println!("else if");
+LL | |     }
+   | |_____^
    |
    = note: `-D clippy::else-if-without-else` implied by `-D warnings`
+   = help: add an `else` block here
 
 error: if expression with an `else if`, but without a final `else`
-  --> $DIR/else_if_without_else.rs:59:12
+  --> $DIR/else_if_without_else.rs:54:12
    |
-59 |       } else if bla3() { //~ ERROR else if without else
+LL |       } else if bla3() {
    |  ____________^
-60 | |         println!("else if 2");
-61 | |     }
-   | |_____^ help: add an `else` block here
+LL | |         //~ ERROR else if without else
+LL | |         println!("else if 2");
+LL | |     }
+   | |_____^
+   |
+   = help: add an `else` block here
 
 error: aborting due to 2 previous errors