2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:43:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x + 0;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
|
2018-08-01 14:30:44 +00:00
= note: `-D clippy::identity-op` implied by `-D warnings`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:44:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x + (1 - 1);
2022-05-04 17:13:06 +00:00
| ^^^^^^^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:46:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 0 + x;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:49:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x | (0);
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:52:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | x * 1;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:53:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | 1 * x;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:59:5
2017-02-07 20:05:30 +00:00
|
2018-12-27 15:57:55 +00:00
LL | -1 & x;
2022-05-04 17:13:06 +00:00
| ^^^^^^ help: consider reducing it to: `x`
2017-02-07 20:05:30 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:62:5
2017-09-30 08:33:15 +00:00
|
2018-12-27 15:57:55 +00:00
LL | u & 255;
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `u`
2017-09-30 08:33:15 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:65:5
2020-05-15 19:17:37 +00:00
|
LL | 42 << 0;
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `42`
2020-05-15 19:17:37 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:66:5
2020-05-15 19:17:37 +00:00
|
LL | 1 >> 0;
2022-05-04 17:13:06 +00:00
| ^^^^^^ help: consider reducing it to: `1`
2020-05-15 19:17:37 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:67:5
2020-05-15 19:17:37 +00:00
|
LL | 42 >> 0;
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `42`
2020-05-15 19:17:37 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:68:5
2021-12-28 16:19:47 +00:00
|
LL | &x >> 0;
2022-11-30 21:25:57 +00:00
| ^^^^^^^ help: consider reducing it to: `x`
2021-12-28 16:19:47 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:69:5
2021-12-28 16:32:55 +00:00
|
LL | x >> &0;
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `x`
2021-12-28 16:32:55 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:76:5
2022-03-11 03:31:17 +00:00
|
LL | 2 % 3;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `2`
2022-03-11 03:31:17 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:77:5
2022-03-11 03:31:17 +00:00
|
LL | -2 % 3;
2022-05-04 17:13:06 +00:00
| ^^^^^^ help: consider reducing it to: `-2`
2022-03-11 03:31:17 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:78:5
2022-03-27 13:48:15 +00:00
|
LL | 2 % -3 + x;
2022-05-04 17:13:06 +00:00
| ^^^^^^ help: consider reducing it to: `2`
2022-03-27 13:48:15 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:79:5
2022-03-27 13:48:15 +00:00
|
LL | -2 % -3 + x;
2022-05-04 17:13:06 +00:00
| ^^^^^^^ help: consider reducing it to: `-2`
2022-03-27 13:48:15 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:80:9
2022-03-11 03:31:17 +00:00
|
LL | x + 1 % 3;
2022-05-04 17:13:06 +00:00
| ^^^^^ help: consider reducing it to: `1`
2022-03-11 03:31:17 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:88:5
2022-04-22 01:39:38 +00:00
|
LL | 0 + if b { 1 } else { 2 };
2022-05-04 17:13:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(if b { 1 } else { 2 })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:89:5
|
LL | 0 + if b { 1 } else { 2 } + if b { 3 } else { 4 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(if b { 1 } else { 2 })`
error: this operation has no effect
--> $DIR/identity_op.rs:90:5
2022-04-22 01:39:38 +00:00
|
LL | 0 + match a { 0 => 10, _ => 20 };
2022-05-04 17:13:06 +00:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(match a { 0 => 10, _ => 20 })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
2022-04-22 01:39:38 +00:00
--> $DIR/identity_op.rs:91:5
|
2022-05-04 17:13:06 +00:00
LL | 0 + match a { 0 => 10, _ => 20 } + match a { 0 => 30, _ => 40 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(match a { 0 => 10, _ => 20 })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:92:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + if b { 1 } else { 2 } + match a { 0 => 30, _ => 40 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(if b { 1 } else { 2 })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:93:5
|
LL | 0 + match a { 0 => 10, _ => 20 } + if b { 3 } else { 4 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(match a { 0 => 10, _ => 20 })`
error: this operation has no effect
--> $DIR/identity_op.rs:94:5
|
LL | (if b { 1 } else { 2 }) + 0;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(if b { 1 } else { 2 })`
error: this operation has no effect
--> $DIR/identity_op.rs:96:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + { a } + 3;
| ^^^^^^^^^ help: consider reducing it to: `({ a })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:97:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + { a } * 2;
| ^^^^^^^^^^^^^ help: consider reducing it to: `({ a } * 2)`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:98:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + loop { let mut c = 0; if c == 10 { break c; } c += 1; } + { a * 2 };
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(loop { let mut c = 0; if c == 10 { break c; } c += 1; })`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:103:7
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | f(1 * a + { 8 * 5 });
| ^^^^^ help: consider reducing it to: `a`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:104:7
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | f(0 + if b { 1 } else { 2 } + 3);
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `if b { 1 } else { 2 }`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:105:20
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | const _: i32 = { 2 * 4 } + 0 + 3;
| ^^^^^^^^^^^^^ help: consider reducing it to: `{ 2 * 4 }`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:106:20
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | const _: i32 = 0 + { 1 + 2 * 3 } + 3;
| ^^^^^^^^^^^^^^^^^ help: consider reducing it to: `{ 1 + 2 * 3 }`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:108:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + a as usize;
| ^^^^^^^^^^^^^^ help: consider reducing it to: `a as usize`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:109:13
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | let _ = 0 + a as usize;
| ^^^^^^^^^^^^^^ help: consider reducing it to: `a as usize`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:110:5
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 0 + { a } as usize;
| ^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `({ a } as usize)`
2022-04-22 01:39:38 +00:00
2022-05-04 17:13:06 +00:00
error: this operation has no effect
--> $DIR/identity_op.rs:112:9
2022-04-22 01:39:38 +00:00
|
2022-05-04 17:13:06 +00:00
LL | 2 * (0 + { a });
| ^^^^^^^^^^^ help: consider reducing it to: `{ a }`
error: this operation has no effect
--> $DIR/identity_op.rs:113:5
|
LL | 1 * ({ a } + 4);
| ^^^^^^^^^^^^^^^ help: consider reducing it to: `(({ a } + 4))`
error: this operation has no effect
--> $DIR/identity_op.rs:114:5
|
LL | 1 * 1;
| ^^^^^ help: consider reducing it to: `1`
error: this operation has no effect
2022-11-30 21:25:57 +00:00
--> $DIR/identity_op.rs:118:18
|
LL | let _: i32 = &x + 0;
| ^^^^^^ help: consider reducing it to: `x`
error: this operation has no effect
--> $DIR/identity_op.rs:122:5
2022-05-04 17:13:06 +00:00
|
LL | 0 + if a { 1 } else { 2 } + if b { 3 } else { 5 }
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider reducing it to: `(if a { 1 } else { 2 })`
2022-04-22 01:39:38 +00:00
2022-11-30 21:25:57 +00:00
error: aborting due to 40 previous errors
2018-01-16 16:06:27 +00:00