rust/src/test/ui/error-codes/E0057.rs
2018-12-25 21:08:33 -07:00

6 lines
125 B
Rust

fn main() {
let f = |x| x * 3;
let a = f(); //~ ERROR E0057
let b = f(4);
let c = f(2, 3); //~ ERROR E0057
}