blob: fed3a5f19b3ac9a031caa7f4ba5d59872cc7d51b [file] [log] [blame]
// check-pass
#![feature(coroutines, coroutine_trait)]
use std::ops::Coroutine;
pub fn example() -> impl Coroutine {
|| yield &1
}
fn main() {}