mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
38d4ac7cea
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
26 lines
558 B
Text
26 lines
558 B
Text
error: ==-comparison of unit values detected. This will always be true
|
|
--> $DIR/unit_cmp.rs:12:8
|
|
|
|
|
LL | if {
|
|
| ________^
|
|
LL | | true;
|
|
LL | | } == {
|
|
LL | | false;
|
|
LL | | } {}
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
|
|
|
|
error: >-comparison of unit values detected. This will always be false
|
|
--> $DIR/unit_cmp.rs:18:8
|
|
|
|
|
LL | if {
|
|
| ________^
|
|
LL | | true;
|
|
LL | | } > {
|
|
LL | | false;
|
|
LL | | } {}
|
|
| |_____^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|