2019-08-05 15:05:05 -05:00
|
|
|
error: this if-then-else expression will always return true
|
2021-02-25 16:33:46 -06:00
|
|
|
--> $DIR/simple.rs:14:5
|
2019-08-05 15:05:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x {
|
|
|
|
LL | | true
|
|
|
|
LL | | } else {
|
|
|
|
LL | | true
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::needless-bool` implied by `-D warnings`
|
|
|
|
|
|
|
|
error: this if-then-else expression will always return false
|
2021-02-25 16:33:46 -06:00
|
|
|
--> $DIR/simple.rs:19:5
|
2019-08-05 15:05:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x {
|
|
|
|
LL | | false
|
|
|
|
LL | | } else {
|
|
|
|
LL | | false
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: this if-then-else expression will always return true
|
2021-02-25 16:33:46 -06:00
|
|
|
--> $DIR/simple.rs:34:5
|
2019-08-05 15:05:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x {
|
|
|
|
LL | | return true;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return true;
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: this if-then-else expression will always return false
|
2021-02-25 16:33:46 -06:00
|
|
|
--> $DIR/simple.rs:42:5
|
2019-08-05 15:05:05 -05:00
|
|
|
|
|
|
|
|
LL | / if x {
|
|
|
|
LL | | return false;
|
|
|
|
LL | | } else {
|
|
|
|
LL | | return false;
|
|
|
|
LL | | };
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|