rust/clippy_tests/examples/unit_cmp.stderr

19 lines
497 B
Text
Raw Normal View History

error: ==-comparison of unit values detected. This will always be true
--> 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
--> unit_cmp.rs:19:8
|
2017-02-08 14:58:07 +01:00
19 | if { true; } > { false; } {
| ^^^^^^^^^^^^^^^^^^^^^^
2017-07-03 06:37:30 +02:00
error: aborting due to 2 previous errors
To learn more, run the command again with --verbose.