2020-03-08 19:12:41 -05:00
|
|
|
// Regression test for #64620
|
|
|
|
|
2023-10-19 16:46:28 -05:00
|
|
|
#![feature(coroutines)]
|
2020-03-08 19:12:41 -05:00
|
|
|
|
|
|
|
pub fn crash(arr: [usize; 1]) {
|
2023-10-19 16:46:28 -05:00
|
|
|
yield arr[0]; //~ ERROR: yield expression outside of coroutine literal
|
2024-04-11 08:15:34 -05:00
|
|
|
//~^ ERROR: `yield` can only be used in
|
2020-03-08 19:12:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|