rust/tests/ui/coroutine/issue-64620-yield-array-element.rs
2023-10-20 21:14:02 +00:00

10 lines
179 B
Rust

// Regression test for #64620
#![feature(coroutines)]
pub fn crash(arr: [usize; 1]) {
yield arr[0]; //~ ERROR: yield expression outside of coroutine literal
}
fn main() {}