mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00: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
|
|
};
|
|
}
|