2017-02-07 14:05:30 -06:00
|
|
|
error: ==-comparison of unit values detected. This will always be true
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unit_cmp.rs:12:8
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if {
|
2018-12-09 23:27:19 -06:00
|
|
|
| ________^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | true;
|
|
|
|
LL | | } == {
|
|
|
|
LL | | false;
|
|
|
|
LL | | } {}
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-08-01 09:30:44 -05:00
|
|
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
|
|
error: >-comparison of unit values detected. This will always be false
|
2019-01-07 15:33:18 -06:00
|
|
|
--> $DIR/unit_cmp.rs:18:8
|
2017-02-07 14:05:30 -06:00
|
|
|
|
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | if {
|
2018-12-09 23:27:19 -06:00
|
|
|
| ________^
|
2018-12-27 09:57:55 -06:00
|
|
|
LL | | true;
|
|
|
|
LL | | } > {
|
|
|
|
LL | | false;
|
|
|
|
LL | | } {}
|
2018-12-09 23:27:19 -06:00
|
|
|
| |_____^
|
2017-02-07 14:05:30 -06:00
|
|
|
|
2019-10-02 15:48:19 -05:00
|
|
|
error: assert_eq of unit values detected. This will always succeed
|
|
|
|
--> $DIR/unit_cmp.rs:24:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!((), ());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: debug_assert_eq of unit values detected. This will always succeed
|
|
|
|
--> $DIR/unit_cmp.rs:25:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_eq!((), ());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: assert_ne of unit values detected. This will always fail
|
|
|
|
--> $DIR/unit_cmp.rs:27:5
|
|
|
|
|
|
|
|
|
LL | assert_ne!((), ());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: debug_assert_ne of unit values detected. This will always fail
|
|
|
|
--> $DIR/unit_cmp.rs:28:5
|
|
|
|
|
|
|
|
|
LL | debug_assert_ne!((), ());
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info)
|
|
|
|
|
|
|
|
error: aborting due to 6 previous errors
|
2018-01-16 10:06:27 -06:00
|
|
|
|