1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
|
#![warn(clippy::identity_op)]
#![allow(unused)]
#![allow(
clippy::eq_op,
clippy::no_effect,
clippy::unnecessary_operation,
clippy::op_ref,
clippy::double_parens,
clippy::uninlined_format_args,
clippy::borrow_deref_ref,
clippy::deref_addrof
)]
use std::fmt::Write as _;
const ONE: i64 = 1;
const NEG_ONE: i64 = -1;
const ZERO: i64 = 0;
struct A(String);
impl std::ops::Shl<i32> for A {
type Output = A;
fn shl(mut self, other: i32) -> Self {
let _ = write!(self.0, "{}", other);
self
}
}
struct Length(u8);
struct Meter;
impl core::ops::Mul<Meter> for u8 {
type Output = Length;
fn mul(self, _: Meter) -> Length {
Length(self)
}
}
#[rustfmt::skip]
fn main() {
let x = 0;
x + 0;
//~^ identity_op
x + (1 - 1);
//~^ identity_op
x + 1;
0 + x;
//~^ identity_op
1 + x;
x - ZERO; //no error, as we skip lookups (for now)
x | (0);
//~^ identity_op
((ZERO)) | x; //no error, as we skip lookups (for now)
x * 1;
//~^ identity_op
1 * x;
//~^ identity_op
x / ONE; //no error, as we skip lookups (for now)
x / 2; //no false positive
x & NEG_ONE; //no error, as we skip lookups (for now)
-1 & x;
//~^ identity_op
let u: u8 = 0;
u & 255;
//~^ identity_op
1 << 0; // no error, this case is allowed, see issue 3430
42 << 0;
//~^ identity_op
1 >> 0;
//~^ identity_op
42 >> 0;
//~^ identity_op
&x >> 0;
//~^ identity_op
x >> &0;
//~^ identity_op
let mut a = A(String::new());
let b = a << 0; // no error: non-integer
1 * Meter; // no error: non-integer
2 % 3;
//~^ identity_op
-2 % 3;
//~^ identity_op
2 % -3 + x;
//~^ identity_op
-2 % -3 + x;
//~^ identity_op
x + 1 % 3;
//~^ identity_op
(x + 1) % 3; // no error
4 % 3; // no error
4 % -3; // no error
// See #8724
let a = 0;
let b = true;
0 + if b { 1 } else { 2 };
//~^ identity_op
0 + if b { 1 } else { 2 } + if b { 3 } else { 4 };
//~^ identity_op
0 + match a { 0 => 10, _ => 20 };
//~^ identity_op
0 + match a { 0 => 10, _ => 20 } + match a { 0 => 30, _ => 40 };
//~^ identity_op
0 + if b { 1 } else { 2 } + match a { 0 => 30, _ => 40 };
//~^ identity_op
0 + match a { 0 => 10, _ => 20 } + if b { 3 } else { 4 };
//~^ identity_op
(if b { 1 } else { 2 }) + 0;
//~^ identity_op
0 + { a } + 3;
//~^ identity_op
0 + { a } * 2;
//~^ identity_op
0 + loop { let mut c = 0; if c == 10 { break c; } c += 1; } + { a * 2 };
//~^ identity_op
fn f(_: i32) {
todo!();
}
f(1 * a + { 8 * 5 });
//~^ identity_op
f(0 + if b { 1 } else { 2 } + 3);
//~^ identity_op
const _: i32 = { 2 * 4 } + 0 + 3;
//~^ identity_op
const _: i32 = 0 + { 1 + 2 * 3 } + 3;
//~^ identity_op
0 + a as usize;
//~^ identity_op
let _ = 0 + a as usize;
//~^ identity_op
0 + { a } as usize;
//~^ identity_op
2 * (0 + { a });
//~^ identity_op
1 * ({ a } + 4);
//~^ identity_op
1 * 1;
//~^ identity_op
// Issue #9904
let x = 0i32;
let _: i32 = &x + 0;
//~^ identity_op
}
pub fn decide(a: bool, b: bool) -> u32 {
0 + if a { 1 } else { 2 } + if b { 3 } else { 5 }
//~^ identity_op
}
/// The following tests are from / for issue #12050
/// In short, the lint didn't work for coerced references,
/// e.g. let x = &0; let y = x + 0;
/// because the suggested fix was `let y = x;` but
/// it should have been `let y = *x;`
fn issue_12050() {
{
let x = &0i32;
let _: i32 = *x + 0;
//~^ identity_op
let _: i32 = x + 0;
//~^ identity_op
}
{
let x = &&0i32;
let _: i32 = **x + 0;
//~^ identity_op
let x = &&0i32;
let _: i32 = *x + 0;
//~^ identity_op
}
{
// this is just silly
let x = &&&0i32;
let _: i32 = ***x + 0;
//~^ identity_op
let _: i32 = **x + 0;
//~^ identity_op
let x = 0i32;
let _: i32 = *&x + 0;
//~^ identity_op
let _: i32 = **&&x + 0;
//~^ identity_op
let _: i32 = *&*&x + 0;
//~^ identity_op
let _: i32 = **&&*&x + 0;
//~^ identity_op
}
{
// this is getting ridiculous, but we should still see the same
// error message so let's just keep going
let x = &0i32;
let _: i32 = **&&*&x + 0;
//~^ identity_op
let _: i32 = **&&*&x + 0;
//~^ identity_op
}
}
fn issue_13470() {
let x = 1i32;
let y = 1i32;
// Removes the + 0i32 while keeping the parentheses around x + y so the cast operation works
let _: u64 = (x + y + 0i32) as u64;
//~^ identity_op
// both of the next two lines should look the same after rustfix
let _: u64 = 1u64 & (x + y + 0i32) as u64;
//~^ identity_op
// Same as above, but with extra redundant parenthesis
let _: u64 = 1u64 & ((x + y) + 0i32) as u64;
//~^ identity_op
// Should maintain parenthesis even if the surrounding expr has the same precedence
let _: u64 = 5u64 + ((x + y) + 0i32) as u64;
//~^ identity_op
// If we don't maintain the parens here, the behavior changes
let _ = -(x + y + 0i32);
//~^ identity_op
// Similarly, we need to maintain parens here
let _ = -(x / y / 1i32);
//~^ identity_op
// Maintain parenthesis if the parent expr is of higher precedence
let _ = 2i32 * (x + y + 0i32);
//~^ identity_op
// Maintain parenthesis if the parent expr is the same precedence
// as not all operations are associative
let _ = 2i32 - (x - y - 0i32);
//~^ identity_op
// But make sure that inner parens still exist
let z = 1i32;
let _ = 2 + (x + (y * z) + 0);
//~^ identity_op
// Maintain parenthesis if the parent expr is of lower precedence
// This is for clarity, and clippy will not warn on these being unnecessary
let _ = 2i32 + (x * y * 1i32);
//~^ identity_op
let x = 1i16;
let y = 1i16;
let _: u64 = 1u64 + ((x as i32 + y as i32) as u64 + 0u64);
//~^ identity_op
}
fn issue_14932() {
let _ = 0usize + &Default::default(); // no error
0usize + &Default::default(); // no error
0usize + &<usize as Default>::default();
//~^ identity_op
let _ = 0usize + &usize::default();
//~^ identity_op
let _n: usize = 0usize + &Default::default();
//~^ identity_op
}
// Expr's type can be inferred by the function's return type
fn issue_14932_2() -> usize {
0usize + &Default::default()
//~^ identity_op
}
trait Def {
fn def() -> Self;
}
impl Def for usize {
fn def() -> Self {
0
}
}
fn issue_14932_3() {
let _ = 0usize + &Def::def(); // no error
0usize + &Def::def(); // no error
0usize + &<usize as Def>::def();
//~^ identity_op
let _ = 0usize + &usize::def();
//~^ identity_op
let _n: usize = 0usize + &Def::def();
//~^ identity_op
}
|