mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 04:06:55 +01:00
8 lines
124 B
Rust
8 lines
124 B
Rust
fn main() {
|
|
let x = |a: (), b: ()| {
|
|
Err(a)?;
|
|
Ok(b)
|
|
//~^ ERROR type annotations needed
|
|
};
|
|
}
|