mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 17:53:56 +00:00
75 lines
2.3 KiB
Plaintext
75 lines
2.3 KiB
Plaintext
|
error: this boolean expression can be simplified
|
||
|
--> $DIR/match_bool.rs:25:11
|
||
|
|
|
||
|
25 | match test && test {
|
||
|
| ^^^^^^^^^^^^ help: try: `test`
|
||
|
|
|
||
|
= note: `-D nonminimal-bool` implied by `-D warnings`
|
||
|
|
||
|
error: you seem to be trying to match on a boolean expression
|
||
|
--> $DIR/match_bool.rs:4:5
|
||
|
|
|
||
|
4 | / match test {
|
||
|
5 | | true => 0,
|
||
|
6 | | false => 42,
|
||
|
7 | | };
|
||
|
| |_____^ help: consider using an if/else expression: `if test { 0 } else { 42 }`
|
||
|
|
|
||
|
= note: `-D match-bool` implied by `-D warnings`
|
||
|
|
||
|
error: you seem to be trying to match on a boolean expression
|
||
|
--> $DIR/match_bool.rs:10:5
|
||
|
|
|
||
|
10 | / match option == 1 {
|
||
|
11 | | true => 1,
|
||
|
12 | | false => 0,
|
||
|
13 | | };
|
||
|
| |_____^ 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
|
||
|
|
|
||
|
15 | / match test {
|
||
|
16 | | true => (),
|
||
|
17 | | false => { println!("Noooo!"); }
|
||
|
18 | | };
|
||
|
| |_____^ help: consider using an if/else expression: `if !test { println!("Noooo!"); }`
|
||
|
|
||
|
error: you seem to be trying to match on a boolean expression
|
||
|
--> $DIR/match_bool.rs:20:5
|
||
|
|
|
||
|
20 | / match test {
|
||
|
21 | | false => { println!("Noooo!"); }
|
||
|
22 | | _ => (),
|
||
|
23 | | };
|
||
|
| |_____^ help: consider using an if/else expression: `if !test { println!("Noooo!"); }`
|
||
|
|
||
|
error: you seem to be trying to match on a boolean expression
|
||
|
--> $DIR/match_bool.rs:25:5
|
||
|
|
|
||
|
25 | / match test && test {
|
||
|
26 | | false => { println!("Noooo!"); }
|
||
|
27 | | _ => (),
|
||
|
28 | | };
|
||
|
| |_____^ help: consider using an if/else expression: `if !(test && test) { println!("Noooo!"); }`
|
||
|
|
||
|
error: equal expressions as operands to `&&`
|
||
|
--> $DIR/match_bool.rs:25:11
|
||
|
|
|
||
|
25 | match test && test {
|
||
|
| ^^^^^^^^^^^^
|
||
|
|
|
||
|
= note: #[deny(eq_op)] on by default
|
||
|
|
||
|
error: you seem to be trying to match on a boolean expression
|
||
|
--> $DIR/match_bool.rs:30:5
|
||
|
|
|
||
|
30 | / match test {
|
||
|
31 | | false => { println!("Noooo!"); }
|
||
|
32 | | true => { println!("Yes!"); }
|
||
|
33 | | };
|
||
|
| |_____^ help: consider using an if/else expression: `if test { println!("Yes!"); } else { println!("Noooo!"); }`
|
||
|
|
||
|
error: aborting due to 8 previous errors
|
||
|
|