1 2 3 4 5 6 7
fn main() { let x = |a: (), b: ()| { Err(a)?; Ok(b) //~^ ERROR type annotations needed }; }