2017-02-07 14:05:30 -06:00
|
|
|
error: this if-then-else expression will always return true
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:9:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
9 | if x { true } else { true };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
= note: `-D needless-bool` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression will always return false
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:10:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
10 | if x { false } else { false };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:11:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
|
11 | if x { true } else { false };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `x`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:12:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
12 | if x { false } else { true };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `!x`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:13:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
13 | if x && y { false } else { true };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `!(x && y)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression will always return true
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:25:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
25 | if x { return true } else { return true };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this if-then-else expression will always return false
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:30:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
30 | if x { return false } else { return false };
|
2017-02-07 14:05:30 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:35:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
35 | if x { return true } else { return false };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `return x`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:40:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
40 | if x && y { return true } else { return false };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `return x && y`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:45:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
45 | if x { return false } else { return true };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `return !x`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: this if-then-else expression returns a bool literal
|
2017-05-17 10:51:35 -05:00
|
|
|
--> needless_bool.rs:50:5
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2017-05-11 08:49:12 -05:00
|
|
|
50 | if x && y { return false } else { return true };
|
2017-05-03 05:51:47 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: you can reduce it to `return !(x && y)`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-07-02 23:37:30 -05:00
|
|
|
error: aborting due to 11 previous errors
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2017-05-17 07:19:44 -05:00
|
|
|
|
|
|
|
To learn more, run the command again with --verbose.
|