mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
aef0f4024a
And suggest adding the `#[coroutine]` to the closure
11 lines
223 B
Rust
11 lines
223 B
Rust
// Regression test for #64620
|
|
|
|
#![feature(coroutines)]
|
|
|
|
pub fn crash(arr: [usize; 1]) {
|
|
yield arr[0]; //~ ERROR: yield expression outside of coroutine literal
|
|
//~^ ERROR: `yield` can only be used in
|
|
}
|
|
|
|
fn main() {}
|