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

async fn a() {}

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

fn main() {}