]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/match_bool.stderr
Auto merge of #68717 - petrochenkov:stabexpat, r=varkor
[rust.git] / tests / ui / match_bool.stderr
index 193e6c17238bd31505cf934ece2c9edf261d12b2..1ad78c740c68bf104e9b3fd8a6e9fc1b84cc6703 100644 (file)
@@ -1,5 +1,5 @@
 error: this boolean expression can be simplified
-  --> $DIR/match_bool.rs:29:11
+  --> $DIR/match_bool.rs:31:11
    |
 LL |     match test && test {
    |           ^^^^^^^^^^^^ help: try: `test`
@@ -7,27 +7,31 @@ LL |     match test && test {
    = note: `-D clippy::nonminimal-bool` implied by `-D warnings`
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:4:5
+  --> $DIR/match_bool.rs:6:5
    |
 LL | /     match test {
 LL | |         true => 0,
 LL | |         false => 42,
 LL | |     };
-   | |_____^ help: consider using an if/else expression: `if test { 0 } else { 42 }`
+   | |_____^ help: consider using an `if`/`else` expression: `if test { 0 } else { 42 }`
    |
-   = note: `-D clippy::match-bool` implied by `-D warnings`
+note: the lint level is defined here
+  --> $DIR/match_bool.rs:1:9
+   |
+LL | #![deny(clippy::match_bool)]
+   |         ^^^^^^^^^^^^^^^^^^
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:10:5
+  --> $DIR/match_bool.rs:12:5
    |
 LL | /     match option == 1 {
 LL | |         true => 1,
 LL | |         false => 0,
 LL | |     };
-   | |_____^ help: consider using an if/else expression: `if option == 1 { 1 } else { 0 }`
+   | |_____^ help: consider using an `if`/`else` expression: `if option == 1 { 1 } else { 0 }`
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:15:5
+  --> $DIR/match_bool.rs:17:5
    |
 LL | /     match test {
 LL | |         true => (),
@@ -36,15 +40,16 @@ LL | |             println!("Noooo!");
 LL | |         },
 LL | |     };
    | |_____^
-help: consider using an if/else expression
+   |
+help: consider using an `if`/`else` expression
    |
 LL |     if !test {
-LL |     println!("Noooo!");
-LL | };
+LL |         println!("Noooo!");
+LL |     };
    |
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:22:5
+  --> $DIR/match_bool.rs:24:5
    |
 LL | /     match test {
 LL | |         false => {
@@ -53,15 +58,16 @@ LL | |         },
 LL | |         _ => (),
 LL | |     };
    | |_____^
-help: consider using an if/else expression
+   |
+help: consider using an `if`/`else` expression
    |
 LL |     if !test {
-LL |     println!("Noooo!");
-LL | };
+LL |         println!("Noooo!");
+LL |     };
    |
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:29:5
+  --> $DIR/match_bool.rs:31:5
    |
 LL | /     match test && test {
 LL | |         false => {
@@ -70,23 +76,24 @@ LL | |         },
 LL | |         _ => (),
 LL | |     };
    | |_____^
-help: consider using an if/else expression
+   |
+help: consider using an `if`/`else` expression
    |
 LL |     if !(test && test) {
-LL |     println!("Noooo!");
-LL | };
+LL |         println!("Noooo!");
+LL |     };
    |
 
 error: equal expressions as operands to `&&`
-  --> $DIR/match_bool.rs:29:11
+  --> $DIR/match_bool.rs:31:11
    |
 LL |     match test && test {
    |           ^^^^^^^^^^^^
    |
-   = note: #[deny(clippy::eq_op)] on by default
+   = note: `#[deny(clippy::eq_op)]` on by default
 
 error: you seem to be trying to match on a boolean expression
-  --> $DIR/match_bool.rs:36:5
+  --> $DIR/match_bool.rs:38:5
    |
 LL | /     match test {
 LL | |         false => {
@@ -96,13 +103,14 @@ LL | |         },
 LL | |         },
 LL | |     };
    | |_____^
-help: consider using an if/else expression
+   |
+help: consider using an `if`/`else` expression
    |
 LL |     if test {
-LL |     println!("Yes!");
-LL | } else {
-LL |     println!("Noooo!");
-LL | };
+LL |         println!("Yes!");
+LL |     } else {
+LL |         println!("Noooo!");
+LL |     };
    |
 
 error: aborting due to 8 previous errors