rust/tests/ui/inference/cannot-infer-closure.rs

8 lines
124 B
Rust

fn main() {
let x = |a: (), b: ()| {
Err(a)?;
Ok(b)
//~^ ERROR type annotations needed
};
}