mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-02 19:32:01 +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
|
|
};
|
|
}
|