mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-21 20:33:11 +00:00
17 lines
215 B
Rust
17 lines
215 B
Rust
//@ edition:2018
|
|
|
|
use std::io::Error;
|
|
|
|
fn make_unit() -> Result<(), Error> {
|
|
Ok(())
|
|
}
|
|
|
|
fn main() {
|
|
let fut = async {
|
|
make_unit()?;
|
|
|
|
Ok(())
|
|
//~^ ERROR type annotations needed
|
|
};
|
|
}
|