rust/tests/ui/unit_cmp.stderr

27 lines
558 B
Text
Raw Normal View History

error: ==-comparison of unit values detected. This will always be true
2018-12-10 06:27:19 +01:00
--> $DIR/unit_cmp.rs:21:8
|
2018-12-27 16:57:55 +01:00
LL | if {
2018-12-10 06:27:19 +01:00
| ________^
2018-12-27 16:57:55 +01:00
LL | | true;
LL | | } == {
LL | | false;
LL | | } {}
2018-12-10 06:27:19 +01:00
| |_____^
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
error: >-comparison of unit values detected. This will always be false
2018-12-10 06:27:19 +01:00
--> $DIR/unit_cmp.rs:27:8
|
2018-12-27 16:57:55 +01:00
LL | if {
2018-12-10 06:27:19 +01:00
| ________^
2018-12-27 16:57:55 +01:00
LL | | true;
LL | | } > {
LL | | false;
LL | | } {}
2018-12-10 06:27:19 +01:00
| |_____^
2018-01-16 17:06:27 +01:00
error: aborting due to 2 previous errors