]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/if_not_else.stderr
Auto merge of #4478 - tsurai:master, r=flip1995
[rust.git] / tests / ui / if_not_else.stderr
index 75e814ee0eec34e28d678a784e12021c77f46e3e..3694f5aec53648eada6a650374672200fb13d21d 100644 (file)
@@ -1,28 +1,24 @@
 error: Unnecessary boolean `not` operation
   --> $DIR/if_not_else.rs:9:5
    |
- | /     if !bla() {
-10 | |         println!("Bugs");
-11 | |     } else {
-12 | |         println!("Bunny");
-13 | |     }
+LL | /     if !bla() {
+LL | |         println!("Bugs");
+LL | |     } else {
+LL | |         println!("Bunny");
+LL | |     }
    | |_____^
    |
-note: lint level defined here
-  --> $DIR/if_not_else.rs:4:9
-   |
-4  | #![deny(if_not_else)]
-   |         ^^^^^^^^^^^
+   = note: `-D clippy::if-not-else` implied by `-D warnings`
    = help: remove the `!` and swap the blocks of the if/else
 
 error: Unnecessary `!=` operation
   --> $DIR/if_not_else.rs:14:5
    |
-14 | /     if 4 != 5 {
-15 | |         println!("Bugs");
-16 | |     } else {
-17 | |         println!("Bunny");
-18 | |     }
+LL | /     if 4 != 5 {
+LL | |         println!("Bugs");
+LL | |     } else {
+LL | |         println!("Bunny");
+LL | |     }
    | |_____^
    |
    = help: change to `==` and swap the blocks of the if/else