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