rust/tests/ui/coroutine/match-bindings.rs
Oli Scherer aef0f4024a Error on using yield without also using #[coroutine] on the closure
And suggest adding the `#[coroutine]` to the closure
2024-04-24 08:05:29 +00:00

24 lines
413 B
Rust

//@ run-pass
#![allow(dead_code)]
#![feature(coroutines)]
enum Enum {
A(String),
B
}
fn main() {
#[coroutine] || { //~ WARN unused coroutine that must be used
loop {
if let true = true {
match Enum::A(String::new()) {
Enum::A(_var) => {}
Enum::B => {}
}
}
yield;
}
};
}