rust/tests/ui/redundant_closure_call.rs

22 lines
271 B
Rust
Raw Normal View History

#![feature(plugin)]
#![plugin(clippy)]
#![deny(redundant_closure_call)]
fn main() {
let a = (|| 42)();
2017-02-08 14:58:07 +01:00
let mut i = 1;
2017-02-08 14:58:07 +01:00
let k = (|m| m+1)(i);
2017-02-08 14:58:07 +01:00
k = (|a,b| a*b)(1,5);
let closure = || 32;
2017-02-08 14:58:07 +01:00
i = closure();
let closure = |i| i+1;
2017-02-08 14:58:07 +01:00
i = closure(3);
i = closure(4);
}