rust/tests/ui/coroutine/issue-91477.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

8 lines
139 B
Rust

#![feature(coroutines)]
fn foo() -> impl Sized {
yield 1; //~ ERROR E0627
//~^ ERROR: `yield` can only be used in
}
fn main() {}