summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/in-trait/return-type-suggestion.rs
blob: 3446761d119da5aa2ca703d8ee427324158e9633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// edition: 2021

#![feature(async_fn_in_trait)]
//~^ WARN the feature `async_fn_in_trait` is incomplete and may not be safe to use and/or cause compiler crashes

trait A {
    async fn e() {
        Ok(())
        //~^ ERROR mismatched types
        //~| HELP consider using a semicolon here
    }
}

fn main() {}