rust/tests/compile-fail/eta.rs
2015-05-10 11:49:08 +05:30

21 lines
No EOL
535 B
Rust

#![feature(plugin)]
#![plugin(clippy)]
#![allow(unknown_lints, unused)]
#![deny(redundant_closure)]
fn main() {
let a = |a, b| foo(a, b);
//~^ ERROR Redundant closure found, consider using `foo` in its place
let c = |a, b| {1+2; foo}(a, b);
//~^ ERROR Redundant closure found, consider using `{ 1 + 2; foo }` in its place
let d = |a, b| foo((|c, d| foo2(c,d))(a,b), b);
//~^ ERROR Redundant closure found, consider using `foo2` in its place
}
fn foo(_: u8, _: u8) {
}
fn foo2(_: u8, _: u8) -> u8 {
1u8
}