aef0f4024a
And suggest adding the `#[coroutine]` to the closure
12 lines
207 B
Rust
12 lines
207 B
Rust
//@ build-pass
|
|
//@ edition:2018
|
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
|
|
|
fn main() {
|
|
let _ = #[coroutine] static |x: u8| match x {
|
|
y if { yield } == y + 1 => (),
|
|
_ => (),
|
|
};
|
|
}
|