mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
82 lines
1.9 KiB
Text
82 lines
1.9 KiB
Text
error: ==-comparison of unit values detected. This will always be true
|
|
--> $DIR/unit_cmp.rs:12:8
|
|
|
|
|
LL | if {
|
|
| ________^
|
|
LL | | true;
|
|
LL | | } == {
|
|
LL | | false;
|
|
LL | | } {}
|
|
| |_____^
|
|
|
|
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
|
|
|
|
error: >-comparison of unit values detected. This will always be false
|
|
--> $DIR/unit_cmp.rs:18:8
|
|
|
|
|
LL | if {
|
|
| ________^
|
|
LL | | true;
|
|
LL | | } > {
|
|
LL | | false;
|
|
LL | | } {}
|
|
| |_____^
|
|
|
|
error: `assert_eq` of unit values detected. This will always succeed
|
|
--> $DIR/unit_cmp.rs:24:5
|
|
|
|
|
LL | / assert_eq!(
|
|
LL | | {
|
|
LL | | true;
|
|
LL | | },
|
|
... |
|
|
LL | | }
|
|
LL | | );
|
|
| |______^
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: `debug_assert_eq` of unit values detected. This will always succeed
|
|
--> $DIR/unit_cmp.rs:32:5
|
|
|
|
|
LL | / debug_assert_eq!(
|
|
LL | | {
|
|
LL | | true;
|
|
LL | | },
|
|
... |
|
|
LL | | }
|
|
LL | | );
|
|
| |______^
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: `assert_ne` of unit values detected. This will always fail
|
|
--> $DIR/unit_cmp.rs:41:5
|
|
|
|
|
LL | / assert_ne!(
|
|
LL | | {
|
|
LL | | true;
|
|
LL | | },
|
|
... |
|
|
LL | | }
|
|
LL | | );
|
|
| |______^
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: `debug_assert_ne` of unit values detected. This will always fail
|
|
--> $DIR/unit_cmp.rs:49:5
|
|
|
|
|
LL | / debug_assert_ne!(
|
|
LL | | {
|
|
LL | | true;
|
|
LL | | },
|
|
... |
|
|
LL | | }
|
|
LL | | );
|
|
| |______^
|
|
|
|
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
|
|
|
|
error: aborting due to 6 previous errors
|
|
|