mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 08:13:41 +00:00
aef0f4024a
And suggest adding the `#[coroutine]` to the closure
6 lines
121 B
Rust
6 lines
121 B
Rust
#![feature(coroutines)]
|
|
|
|
fn main() { yield; }
|
|
//~^ ERROR yield expression outside
|
|
//~| ERROR `yield` can only be used in
|