about summary refs log tree commit diff
path: root/tests/ui/async-await/issues/non-async-enclosing-span.rs
blob: 3943a66c6e710fbb3c78b01c6f85783e94f3fba0 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ edition:2018

async fn do_the_thing() -> u8 {
    8
}
// #63398: point at the enclosing scope and not the previously seen closure
fn main() {  //~ NOTE this is not `async`
    let x = move || {};
    let y = do_the_thing().await; //~ ERROR `await` is only allowed inside `async` functions
    //~^ NOTE only allowed inside `async` functions and blocks
}