2017-02-07 20:05:30 +00:00
|
|
|
error: ==-comparison of unit values detected. This will always be true
|
|
|
|
--> $DIR/unit_cmp.rs:16:8
|
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
16 | if { true; } == { false; } {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2017-02-08 13:58:07 +00:00
|
|
|
19 | if { true; } > { false; } {
|
2017-02-07 20:05:30 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|