rust/tests/ui/coroutine/missing_coroutine_attr_sugg...

9 lines
165 B
Rust

//@ run-rustfix
#![feature(coroutines, gen_blocks, stmt_expr_attributes)]
fn main() {
let _ = #[coroutine] || yield;
//~^ ERROR `yield` can only be used
}