rust/tests/ui/coroutine/yield-in-args.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

11 lines
158 B
Rust

#![feature(coroutines)]
fn foo(_b: &bool, _a: ()) {}
fn main() {
#[coroutine]
|| {
let b = true;
foo(&b, yield); //~ ERROR
};
}