]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/if_not_else.stderr
Auto merge of #8374 - Alexendoo:bless-revisions, r=camsteffen
[rust.git] / tests / ui / if_not_else.stderr
index 0393e49a2ee7605b4435900e00941d00f4b6df81..8c8cc44bb035882e2484a96a8874351632c6be89 100644 (file)
@@ -1,27 +1,27 @@
-error: Unnecessary boolean `not` operation
-  --> $DIR/if_not_else.rs:18:5
+error: unnecessary boolean `not` operation
+  --> $DIR/if_not_else.rs:12:5
    |
-18 | /     if !bla() {
-19 | |         println!("Bugs");
-20 | |     } else {
-21 | |         println!("Bunny");
-22 | |     }
+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:23:5
+error: unnecessary `!=` operation
+  --> $DIR/if_not_else.rs:17:5
    |
-23 | /     if 4 != 5 {
-24 | |         println!("Bugs");
-25 | |     } else {
-26 | |         println!("Bunny");
-27 | |     }
+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