mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
453 B
Text
16 lines
453 B
Text
error: ==-comparison of unit values detected. This will always be true
|
|
--> $DIR/unit_cmp.rs:16:8
|
|
|
|
|
16 | if { true; } == { false; } {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D unit-cmp` implied by `-D warnings`
|
|
|
|
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
|
|
|