blob: 4a584204773145d2306ace9d8201dca1302b713e [file] [log] [blame]
//@ build-pass
#![feature(coroutines)]
#![allow(unused_assignments, dead_code)]
fn main() {
let _ = || {
let mut x = vec![22_usize];
std::mem::drop(x);
match y() {
true if {
x = vec![];
false
} => {}
_ => {
yield;
}
}
};
}
fn y() -> bool {
true
}