Add regression test for MIR drop generation in async loops

Fixes #61986.
This commit is contained in:
Taylor Cramer 2019-06-26 10:23:27 -07:00
parent d3e2cec292
commit 72ca844ca7
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
// compile-pass
// edition:2018
//
// Tests that we properly handle StorageDead/StorageLives for temporaries
// created in async loop bodies.
#![feature(async_await)]
async fn bar() -> Option<()> {
Some(())
}
async fn listen() {
while let Some(_) = bar().await {
String::new();
}
}
fn main() {
listen();
}