rust-clippy/tests/ui/redundant_closure_call_early.rs

21 lines
427 B
Rust
Raw Normal View History

// non rustfixable, see redundant_closure_call_fixable.rs
2018-07-28 15:34:52 +00:00
#![warn(clippy::redundant_closure_call)]
fn main() {
2018-12-09 22:26:16 +00:00
let mut i = 1;
// lint here
2018-12-09 22:26:16 +00:00
let mut k = (|m| m + 1)(i);
// lint here
2018-12-09 22:26:16 +00:00
k = (|a, b| a * b)(1, 5);
// don't lint these
#[allow(clippy::needless_return)]
(|| return 2)();
(|| -> Option<i32> { None? })();
#[allow(clippy::try_err)]
(|| -> Result<i32, i32> { Err(2)? })();
}