rust/tests/ui/unit_cmp.stderr

15 lines
411 B
Plaintext
Raw Normal View History

error: ==-comparison of unit values detected. This will always be true
2017-08-01 17:54:21 +02:00
--> $DIR/unit_cmp.rs:16:8
|
2017-02-08 14:58:07 +01:00
16 | if { true; } == { false; } {
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `-D unit-cmp` implied by `-D warnings`
error: >-comparison of unit values detected. This will always be false
2017-08-01 17:54:21 +02:00
--> $DIR/unit_cmp.rs:19:8
|
2017-02-08 14:58:07 +01:00
19 | if { true; } > { false; } {
| ^^^^^^^^^^^^^^^^^^^^^^