mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-07 17:18:32 +03: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
|
|
};
|
|
}
|