summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/proper-span-for-type-error.rs
blob: 00ccde1bf99628bf9f7d9ad8d65f1feffcfc8a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
// edition:2021
// run-rustfix
#![allow(dead_code)]

async fn a() {}

async fn foo() -> Result<(), i32> {
    a().await //~ ERROR mismatched types
}

fn main() {}