rust-clippy/tests/ui/redundant_closure_call.rs

22 lines
269 B
Rust
Raw Normal View History

2018-07-28 15:34:52 +00:00
#![feature(tool_lints)]
2017-09-18 10:47:33 +00:00
2018-07-28 15:34:52 +00:00
#![warn(clippy::redundant_closure_call)]
fn main() {
let a = (|| 42)();
2017-02-08 13:58:07 +00:00
let mut i = 1;
let mut k = (|m| m+1)(i);
2017-02-08 13:58:07 +00:00
k = (|a,b| a*b)(1,5);
let closure = || 32;
2017-02-08 13:58:07 +00:00
i = closure();
let closure = |i| i+1;
2017-02-08 13:58:07 +00:00
i = closure(3);
i = closure(4);
}