about summary refs log tree commit diff
path: root/tests/ui/async-await/issues/issue-64964.rs
blob: 257b67521cf4a2400d61c760e2ed36ac2ea2b999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//@ check-pass
//@ incremental
//@ compile-flags: -Z query-dep-graph
//@ edition:2018

// Regression test for ICE related to `await`ing in a method + incr. comp. (#64964)

struct Body;
impl Body {
    async fn next(&mut self) {
        async {}.await
    }
}

// Another reproduction: `await`ing with a variable from for-loop.

async fn bar() {
    for x in 0..10 {
        async { Some(x) }.await.unwrap();
    }
}

fn main() {}