17 lines
461 B
Plaintext
17 lines
461 B
Plaintext
error: ==-comparison of unit values detected. This will always be true
|
|
--> $DIR/unit_cmp.rs:26:8
|
|
|
|
|
26 | if { true; } == { false; } {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
|
|
|
|
error: >-comparison of unit values detected. This will always be false
|
|
--> $DIR/unit_cmp.rs:29:8
|
|
|
|
|
29 | if { true; } > { false; } {
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|