2019-09-25 11:30:27 -05:00
|
|
|
// non rustfixable, see redundant_closure_call_fixable.rs
|
|
|
|
|
2018-07-28 10:34:52 -05:00
|
|
|
#![warn(clippy::redundant_closure_call)]
|
2016-03-03 13:14:49 -06:00
|
|
|
|
|
|
|
fn main() {
|
2018-12-09 16:26:16 -06:00
|
|
|
let mut i = 1;
|
2020-07-26 14:07:07 -05:00
|
|
|
|
|
|
|
// lint here
|
2018-12-09 16:26:16 -06:00
|
|
|
let mut k = (|m| m + 1)(i);
|
2016-03-03 13:14:49 -06:00
|
|
|
|
2020-07-26 14:07:07 -05:00
|
|
|
// lint here
|
2018-12-09 16:26:16 -06:00
|
|
|
k = (|a, b| a * b)(1, 5);
|
2016-03-03 13:14:49 -06:00
|
|
|
|
2020-07-26 14:07:07 -05:00
|
|
|
// don't lint these
|
2018-11-14 00:01:39 -06:00
|
|
|
#[allow(clippy::needless_return)]
|
|
|
|
(|| return 2)();
|
|
|
|
(|| -> Option<i32> { None? })();
|
2021-07-20 22:23:22 -05:00
|
|
|
#[allow(clippy::try_err)]
|
2019-08-15 03:04:47 -05:00
|
|
|
(|| -> Result<i32, i32> { Err(2)? })();
|
2016-03-03 13:14:49 -06:00
|
|
|
}
|