rust/tests/ui/redundant_closure_call_late.rs

23 lines
540 B
Rust
Raw Normal View History

// non rustfixable, see redundant_closure_call_fixable.rs
2018-07-28 17:34:52 +02:00
#![warn(clippy::redundant_closure_call)]
fn main() {
2018-12-09 23:26:16 +01:00
let mut i = 1;
// 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);
// 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();
}