mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
26 lines
391 B
Rust
26 lines
391 B
Rust
//@ 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
|
|
}
|