mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
180 lines
4.4 KiB
Text
180 lines
4.4 KiB
Text
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:7:13
|
|
|
|
|
LL | let _ = 1 == 1;
|
|
| ^^^^^^
|
|
|
|
|
= note: `-D clippy::eq-op` implied by `-D warnings`
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:8:13
|
|
|
|
|
LL | let _ = "no" == "no";
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> $DIR/eq_op.rs:10:13
|
|
|
|
|
LL | let _ = false != false;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `<`
|
|
--> $DIR/eq_op.rs:11:13
|
|
|
|
|
LL | let _ = 1.5 < 1.5;
|
|
| ^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `>=`
|
|
--> $DIR/eq_op.rs:12:13
|
|
|
|
|
LL | let _ = 1u64 >= 1u64;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> $DIR/eq_op.rs:14: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 `&`
|
|
--> $DIR/eq_op.rs:17:13
|
|
|
|
|
LL | let _ = (1u32 as u64) & (1u32 as u64);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `^`
|
|
--> $DIR/eq_op.rs:20:17
|
|
|
|
|
LL | let _ = 1 ^ ((((((1))))));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `<`
|
|
--> $DIR/eq_op.rs:24:13
|
|
|
|
|
LL | let _ = (-(2) < -(2));
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:25:13
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&`
|
|
--> $DIR/eq_op.rs:25:14
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&`
|
|
--> $DIR/eq_op.rs:25:35
|
|
|
|
|
LL | let _ = ((1 + 1) & (1 + 1) == (1 + 1) & (1 + 1));
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:26:13
|
|
|
|
|
LL | let _ = (1 * 2) + (3 * 4) == 1 * 2 + 3 * 4;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> $DIR/eq_op.rs:29:13
|
|
|
|
|
LL | let _ = ([1] != [1]);
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `!=`
|
|
--> $DIR/eq_op.rs:30:13
|
|
|
|
|
LL | let _ = ((1, 2) != (1, 2));
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:34:13
|
|
|
|
|
LL | let _ = 1 + 1 == 2;
|
|
| ^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:35:13
|
|
|
|
|
LL | let _ = 1 - 1 == 0;
|
|
| ^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `-`
|
|
--> $DIR/eq_op.rs:35:13
|
|
|
|
|
LL | let _ = 1 - 1 == 0;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `-`
|
|
--> $DIR/eq_op.rs:37:13
|
|
|
|
|
LL | let _ = 1 - 1;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `/`
|
|
--> $DIR/eq_op.rs:38:13
|
|
|
|
|
LL | let _ = 1 / 1;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> $DIR/eq_op.rs:39:13
|
|
|
|
|
LL | let _ = true && true;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `||`
|
|
--> $DIR/eq_op.rs:41:13
|
|
|
|
|
LL | let _ = true || true;
|
|
| ^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> $DIR/eq_op.rs:46:13
|
|
|
|
|
LL | let _ = a == b && b == a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> $DIR/eq_op.rs:47:13
|
|
|
|
|
LL | let _ = a != b && b != a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> $DIR/eq_op.rs:48:13
|
|
|
|
|
LL | let _ = a < b && b > a;
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `&&`
|
|
--> $DIR/eq_op.rs:49:13
|
|
|
|
|
LL | let _ = a <= b && b >= a;
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:52:13
|
|
|
|
|
LL | let _ = a == a;
|
|
| ^^^^^^
|
|
|
|
error: equal expressions as operands to `/`
|
|
--> $DIR/eq_op.rs:62:20
|
|
|
|
|
LL | const D: u32 = A / A;
|
|
| ^^^^^
|
|
|
|
error: equal expressions as operands to `==`
|
|
--> $DIR/eq_op.rs:93: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
|
|
|