2019-09-25 09:30:27 -07:00
|
|
|
// non rustfixable, see redundant_closure_call_fixable.rs
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::redundant_closure_call)]
|
2016-03-04 00:44:49 +05:30
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 23:26:16 +01:00
|
|
|
let mut i = 1;
|
2016-03-04 00:44:49 +05:30
|
|
|
|
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 08:01:39 +02:00
|
|
|
|
2020-07-14 20:27:25 +02:00
|
|
|
// lint here
|
|
|
|
let redun_closure = || 1;
|
|
|
|
i = redun_closure();
|
|
|
|
|
2020-07-19 11:47:32 +02:00
|
|
|
// shadowed closures are supported, lint here
|
|
|
|
let shadowed_closure = || 1;
|
|
|
|
i = shadowed_closure();
|
|
|
|
let shadowed_closure = || 2;
|
|
|
|
i = shadowed_closure();
|
|
|
|
|
|
|
|
// don't lint here
|
|
|
|
let shadowed_closure = || 2;
|
|
|
|
i = shadowed_closure();
|
|
|
|
i = shadowed_closure();
|
2020-08-18 23:00:21 +09:00
|
|
|
|
|
|
|
// Fix FP in #5916
|
|
|
|
let mut x;
|
|
|
|
let create = || 2 * 2;
|
|
|
|
x = create();
|
|
|
|
fun(move || {
|
|
|
|
x = create();
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn fun<T: 'static + FnMut()>(mut f: T) {
|
|
|
|
f();
|
2016-03-04 00:44:49 +05:30
|
|
|
}
|