about summary refs log tree commit diff
path: root/tests/ui/async-await/issues/issue-61986.rs
blob: c48c847a4e75bd39be7f083cb02ce57d5b2e2d0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//@ build-pass (FIXME(62277): could be check-pass?)
//@ edition:2018
//
// Tests that we properly handle StorageDead/StorageLives for temporaries
// created in async loop bodies.

async fn bar() -> Option<()> {
    Some(())
}

async fn listen() {
    while let Some(_) = bar().await {
        String::new();
    }
}

fn main() {
    listen();
}