2022-05-10 19:58:18 -05:00
|
|
|
// build-pass
|
|
|
|
// edition:2018
|
|
|
|
// compile-flags: -Zdrop-tracking
|
|
|
|
|
2022-05-13 15:38:36 -05:00
|
|
|
#![feature(generators)]
|
2022-05-10 19:58:18 -05:00
|
|
|
|
|
|
|
fn main() {
|
2022-05-17 17:04:05 -05:00
|
|
|
let _ = static |x: u8| match x {
|
2022-05-13 15:38:36 -05:00
|
|
|
y if { yield } == y + 1 => (),
|
|
|
|
_ => (),
|
|
|
|
};
|
2022-05-10 19:58:18 -05:00
|
|
|
}
|