//@ compile-flags: -Cpanic=unwind --crate-type=lib //@ no-prefer-dynamic //@ edition:2021 #![feature(coroutines, stmt_expr_attributes)] pub fn run(a: T) { let _ = #[coroutine] move || { drop(a); yield; }; }