2022-05-10 17:58:18 -07:00
|
|
|
//@ build-pass
|
|
|
|
//@ edition:2018
|
|
|
|
|
2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
2022-05-10 17:58:18 -07:00
|
|
|
|
|
|
|
fn main() {
|
2024-04-11 13:15:34 +00:00
|
|
|
let _ = #[coroutine] static |x: u8| match x {
|
2022-05-13 13:38:36 -07:00
|
|
|
y if { yield } == y + 1 => (),
|
|
|
|
_ => (),
|
|
|
|
};
|
2022-05-10 17:58:18 -07:00
|
|
|
}
|