rust-clippy/tests/ui/needless_bool/fixable.stderr

112 lines
2.9 KiB
Text
Raw Normal View History

error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:41:5
|
2018-12-27 15:57:55 +00:00
LL | / if x {
LL | | true
LL | | } else {
LL | | false
LL | | };
2018-12-10 05:27:19 +00:00
| |_____^ help: you can reduce it to: `x`
|
= note: `-D clippy::needless-bool` implied by `-D warnings`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:46:5
|
2018-12-27 15:57:55 +00:00
LL | / if x {
LL | | false
LL | | } else {
LL | | true
LL | | };
2018-12-10 05:27:19 +00:00
| |_____^ help: you can reduce it to: `!x`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:51:5
|
2018-12-27 15:57:55 +00:00
LL | / if x && y {
LL | | false
LL | | } else {
LL | | true
LL | | };
2018-12-10 05:27:19 +00:00
| |_____^ help: you can reduce it to: `!(x && y)`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:71:5
|
2018-12-27 15:57:55 +00:00
LL | / if x {
LL | | return true;
LL | | } else {
LL | | return false;
LL | | };
| |_____^ help: you can reduce it to: `return x`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:79:5
2018-12-27 15:57:55 +00:00
|
LL | / if x {
LL | | return false;
LL | | } else {
LL | | return true;
2018-12-27 15:57:55 +00:00
LL | | };
| |_____^ help: you can reduce it to: `return !x`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:87:5
2018-12-27 15:57:55 +00:00
|
LL | / if x && y {
LL | | return true;
LL | | } else {
LL | | return false;
LL | | };
| |_____^ help: you can reduce it to: `return x && y`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:95:5
2018-12-27 15:57:55 +00:00
|
LL | / if x && y {
LL | | return false;
LL | | } else {
LL | | return true;
LL | | };
| |_____^ help: you can reduce it to: `return !(x && y)`
error: equality checks against true are unnecessary
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:103:8
2018-12-27 15:57:55 +00:00
|
LL | if x == true {};
| ^^^^^^^^^ help: try simplifying it as shown: `x`
|
= note: `-D clippy::bool-comparison` implied by `-D warnings`
error: equality checks against false can be replaced by a negation
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:107:8
2018-12-27 15:57:55 +00:00
|
LL | if x == false {};
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
error: equality checks against true are unnecessary
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:117:8
2018-12-27 15:57:55 +00:00
|
LL | if x == true {};
| ^^^^^^^^^ help: try simplifying it as shown: `x`
error: equality checks against false can be replaced by a negation
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:118:8
2018-12-27 15:57:55 +00:00
|
LL | if x == false {};
| ^^^^^^^^^^ help: try simplifying it as shown: `!x`
error: this if-then-else expression returns a bool literal
2021-10-04 06:33:40 +00:00
--> $DIR/fixable.rs:127:12
|
LL | } else if returns_bool() {
| ____________^
LL | | false
LL | | } else {
LL | | true
LL | | };
| |_____^ help: you can reduce it to: `{ !returns_bool() }`
error: aborting due to 12 previous errors
2018-01-16 16:06:27 +00:00