]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/else_if_without_else.stderr
iterate List by value
[rust.git] / tests / ui / else_if_without_else.stderr
index 7c8afcf3ce1724cecd1a0df8d93d1fd64377ebbd..6f47658cfb18400f0df75a7ab24e8f10fcec8ad8 100644 (file)
@@ -1,22 +1,24 @@
-error: if expression with an `else if`, but without a final `else`
-  --> $DIR/else_if_without_else.rs:51:12
+error: `if` expression with an `else if`, but without a final `else`
+  --> $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 | |     }
+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
+error: `if` expression with an `else if`, but without a final `else`
+  --> $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 | |     }
+LL | |         //~ ERROR else if without else
+LL | |         println!("else if 2");
+LL | |     }
    | |_____^
    |
    = help: add an `else` block here