mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
181 lines
4.6 KiB
Text
181 lines
4.6 KiB
Text
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:7:13
|
|
|
|
|
LL | let _ = 1 == 1;
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::eq-op` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::eq_op)]`
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:10:13
|
|
|
|
|
LL | let _ = "no" == "no";
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> tests/ui/eq_op.rs:13:13
|
|
|
|
|
LL | let _ = false != false;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `<`
|
|
--> tests/ui/eq_op.rs:15:13
|
|
|
|
|
LL | let _ = 1.5 < 1.5;
|
|
| ^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `>=`
|
|
--> tests/ui/eq_op.rs:17:13
|
|
|
|
|
LL | let _ = 1u64 >= 1u64;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> tests/ui/eq_op.rs:20:13
|
|
|
|
|
LL | let _ = x != x;
|
|
| ^^^^^^
|
|
|
|
|
= note: if you intended to check if the operand is NaN, use `.is_nan()` instead
|
|
|
|
error: equal expressions as operands to `&`
|
|
--> tests/ui/eq_op.rs:25:13
|
|
|
|
|
LL | let _ = (1u32 as u64) & (1u32 as u64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `^`
|
|
--> tests/ui/eq_op.rs:29:17
|
|
|
|
|
LL | let _ = 1 ^ ((((((1))))));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `<`
|
|
--> tests/ui/eq_op.rs:34:13
|
|
|
|
|
LL | let _ = (-(2) < -(2));
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:36:13
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&`
|
|
--> tests/ui/eq_op.rs:36:14
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&`
|
|
--> tests/ui/eq_op.rs:36:35
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:40:13
|
|
|
|
|
LL | let _ = (1 * 2) + (3 * 4) == 1 * 2 + 3 * 4;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> tests/ui/eq_op.rs:44:13
|
|
|
|
|
LL | let _ = ([1] != [1]);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> tests/ui/eq_op.rs:46:13
|
|
|
|
|
LL | let _ = ((1, 2) != (1, 2));
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:51:13
|
|
|
|
|
LL | let _ = 1 + 1 == 2;
|
|
| ^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:53:13
|
|
|
|
|
LL | let _ = 1 - 1 == 0;
|
|
| ^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `-`
|
|
--> tests/ui/eq_op.rs:53:13
|
|
|
|
|
LL | let _ = 1 - 1 == 0;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `-`
|
|
--> tests/ui/eq_op.rs:57:13
|
|
|
|
|
LL | let _ = 1 - 1;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `/`
|
|
--> tests/ui/eq_op.rs:59:13
|
|
|
|
|
LL | let _ = 1 / 1;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> tests/ui/eq_op.rs:61:13
|
|
|
|
|
LL | let _ = true && true;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `||`
|
|
--> tests/ui/eq_op.rs:64:13
|
|
|
|
|
LL | let _ = true || true;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> tests/ui/eq_op.rs:70:13
|
|
|
|
|
LL | let _ = a == b && b == a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> tests/ui/eq_op.rs:72:13
|
|
|
|
|
LL | let _ = a != b && b != a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> tests/ui/eq_op.rs:74:13
|
|
|
|
|
LL | let _ = a < b && b > a;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> tests/ui/eq_op.rs:76:13
|
|
|
|
|
LL | let _ = a <= b && b >= a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:80:13
|
|
|
|
|
LL | let _ = a == a;
|
|
| ^^^^^^
|
|
|
|
error: equal expressions as operands to `/`
|
|
--> tests/ui/eq_op.rs:91:20
|
|
|
|
|
LL | const D: u32 = A / A;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> tests/ui/eq_op.rs:123:5
|
|
|
|
|
LL | (n1.inner.0).0 == (n1.inner.0).0 && (n1.inner.1).0 == (n2.inner.1).0 && (n1.inner.2).0 == (n2.inner.2).0
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 29 previous errors
|
|
|