2019-09-25 18:30:27 +02:00
|
|
|
// non rustfixable, see redundant_closure_call_fixable.rs
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::redundant_closure_call)]
|
2016-03-03 20:14:49 +01:00
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 23:26:16 +01:00
|
|
|
let mut i = 1;
|
2016-03-03 20:14:49 +01:00
|
|
|
|
2020-07-14 20:27:25 +02:00
|
|
|
// don't lint here, the closure is used more than once
|
2018-12-09 23:26:16 +01:00
|
|
|
let closure = |i| i + 1;
|
|
|
|
i = closure(3);
|
|
|
|
i = closure(4);
|
2018-11-14 07:01:39 +01:00
|
|
|
|
2020-07-14 20:27:25 +02:00
|
|
|
// lint here
|
|
|
|
let redun_closure = || 1;
|
|
|
|
i = redun_closure();
|
|
|
|
|
|
|
|
// the lint is applicable here but the lint doesn't support redefinition
|
|
|
|
let redefined_closure = || 1;
|
|
|
|
i = redefined_closure();
|
|
|
|
let redefined_closure = || 2;
|
|
|
|
i = redefined_closure();
|
2016-03-03 20:14:49 +01:00
|
|
|
}
|