]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/if_not_else.stderr
iterate List by value
[rust.git] / tests / ui / if_not_else.stderr
index a054ac6223d90178495c912574d832b62bf644eb..78bc4d4bd20a30359e686ac4e891dec16c2108bf 100644 (file)
@@ -1,27 +1,27 @@
 error: Unnecessary boolean `not` operation
-  --> $DIR/if_not_else.rs:19:5
+  --> $DIR/if_not_else.rs:9:5
    |
-19 | /     if !bla() {
-20 | |         println!("Bugs");
-21 | |     } else {
-22 | |         println!("Bunny");
-23 | |     }
+LL | /     if !bla() {
+LL | |         println!("Bugs");
+LL | |     } else {
+LL | |         println!("Bunny");
+LL | |     }
    | |_____^
    |
    = note: `-D clippy::if-not-else` implied by `-D warnings`
-   = help: remove the `!` and swap the blocks of the if/else
+   = help: remove the `!` and swap the blocks of the `if`/`else`
 
 error: Unnecessary `!=` operation
-  --> $DIR/if_not_else.rs:24:5
+  --> $DIR/if_not_else.rs:14:5
    |
-24 | /     if 4 != 5 {
-25 | |         println!("Bugs");
-26 | |     } else {
-27 | |         println!("Bunny");
-28 | |     }
+LL | /     if 4 != 5 {
+LL | |         println!("Bugs");
+LL | |     } else {
+LL | |         println!("Bunny");
+LL | |     }
    | |_____^
    |
-   = help: change to `==` and swap the blocks of the if/else
+   = help: change to `==` and swap the blocks of the `if`/`else`
 
 error: aborting due to 2 previous errors