rust/tests/ui/inference/cannot-infer-async.rs

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
};
}