blob: d13d480dcdcce00ca61041d214e9061efe9863d8 [file] [log] [blame] [edit]
//@ run-pass
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
use std::ops::Coroutine;
use std::pin::Pin;
fn main() {
let b = |_| 3;
let mut a = #[coroutine] || {
b(yield);
};
Pin::new(&mut a).resume(());
}