2019-06-15 09:08:41 +00:00
|
|
|
// Test that we don't consider temporaries for statement expressions as live
|
|
|
|
// across yields
|
|
|
|
|
|
|
|
// check-pass
|
|
|
|
// edition:2018
|
|
|
|
|
2019-08-02 01:45:58 +00:00
|
|
|
#![feature(generators, generator_trait)]
|
2019-06-15 09:08:41 +00:00
|
|
|
|
|
|
|
use std::ops::Generator;
|
|
|
|
|
|
|
|
async fn drop_and_await() {
|
|
|
|
async {};
|
|
|
|
async {}.await;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn drop_and_yield() {
|
|
|
|
let x = || {
|
|
|
|
String::new();
|
|
|
|
yield;
|
|
|
|
};
|
2020-01-25 19:03:10 +00:00
|
|
|
Box::pin(x).as_mut().resume(());
|
2019-06-15 09:08:41 +00:00
|
|
|
let y = static || {
|
|
|
|
String::new();
|
|
|
|
yield;
|
|
|
|
};
|
2020-01-25 19:03:10 +00:00
|
|
|
Box::pin(y).as_mut().resume(());
|
2019-06-15 09:08:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
drop_and_await();
|
|
|
|
drop_and_yield();
|
|
|
|
}
|