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