about summary refs log tree commit diff
path: root/tests/ui/inference/cannot-infer-async.rs
blob: e4ab8f90e4bd3b5d4d58ac6acdd558351203d81b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//@ edition:2018

use std::io::Error;

fn make_unit() -> Result<(), Error> {
    Ok(())
}

fn main() {
    let fut = async {
        make_unit()?;

        Ok(())
        //~^ ERROR type annotations needed
    };
}