mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 17:07:17 +00:00
20 lines
511 B
Text
20 lines
511 B
Text
error: ==-comparison of unit values detected. This will always be true
|
|
--> $DIR/unit_cmp.rs:16:8
|
|
|
|
|
16 | if { true; } == { false; } {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
note: lint level defined here
|
|
--> $DIR/unit_cmp.rs:4:9
|
|
|
|
|
4 | #![deny(unit_cmp)]
|
|
| ^^^^^^^^
|
|
|
|
error: >-comparison of unit values detected. This will always be false
|
|
--> $DIR/unit_cmp.rs:19:8
|
|
|
|
|
19 | if { true; } > { false; } {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|