blob: 1895de1f12b3c43448a90ef535c774a9cc66f845 [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
}