summary refs log tree commit diff
path: root/tests/ui/coroutine/pin-box-coroutine.rs
blob: e348551a642fe23a60fdc0cbc5d9874d36d67bf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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));
}