Files
rust/tests/ui/unit_cmp.stderr

76 lines
1.5 KiB
Plaintext
Raw Normal View History

error: ==-comparison of unit values detected. This will always be true
--> tests/ui/unit_cmp.rs:17:8
|
2018-12-27 16:57:55 +01:00
LL | if {
2018-12-10 06:27:19 +01:00
| ________^
2025-02-12 23:44:38 +01:00
LL | |
LL | |
LL | | true;
LL | | } == {
2018-12-27 16:57:55 +01:00
LL | | false;
LL | | } {}
2018-12-10 06:27:19 +01:00
| |_____^
|
= note: `-D clippy::unit-cmp` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unit_cmp)]`
error: >-comparison of unit values detected. This will always be false
2025-02-12 23:44:38 +01:00
--> tests/ui/unit_cmp.rs:25:8
|
2018-12-27 16:57:55 +01:00
LL | if {
2018-12-10 06:27:19 +01:00
| ________^
LL | |
2025-02-11 17:57:08 +01:00
LL | |
2018-12-27 16:57:55 +01:00
LL | | true;
LL | | } > {
LL | | false;
LL | | } {}
2018-12-10 06:27:19 +01:00
| |_____^
error: `assert_eq` of unit values detected. This will always succeed
2025-02-12 23:44:38 +01:00
--> tests/ui/unit_cmp.rs:33:5
|
LL | / assert_eq!(
2025-02-12 23:44:38 +01:00
LL | |
LL | | {
LL | | true;
... |
LL | | );
| |_____^
error: `debug_assert_eq` of unit values detected. This will always succeed
2025-02-12 23:44:38 +01:00
--> tests/ui/unit_cmp.rs:42:5
|
LL | / debug_assert_eq!(
2025-02-12 23:44:38 +01:00
LL | |
LL | | {
LL | | true;
... |
LL | | );
| |_____^
error: `assert_ne` of unit values detected. This will always fail
2025-02-12 23:44:38 +01:00
--> tests/ui/unit_cmp.rs:52:5
|
LL | / assert_ne!(
2025-02-12 23:44:38 +01:00
LL | |
LL | | {
LL | | true;
... |
LL | | );
| |_____^
error: `debug_assert_ne` of unit values detected. This will always fail
2025-02-12 23:44:38 +01:00
--> tests/ui/unit_cmp.rs:61:5
|
LL | / debug_assert_ne!(
2025-02-12 23:44:38 +01:00
LL | |
LL | | {
LL | | true;
... |
LL | | );
| |_____^
error: aborting due to 6 previous errors
2018-01-16 17:06:27 +01:00