blob: d030f3ef214d1e9c2787769142394984468d48d2 [file] [log] [blame]
//@ run-pass
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
use std::ops::Coroutine;
fn assert_coroutine<G: Coroutine>(_: G) {
}
fn main() {
assert_coroutine(#[coroutine] static || yield);
assert_coroutine(Box::pin(#[coroutine] static || yield));
}