blob: a1064165b2f7ac535156218d78126128304ccb43 [file] [log] [blame]
// run-pass
#![feature(generators, generator_trait)]
use std::ops::Generator;
use std::pin::Pin;
fn main() {
let b = |_| 3;
let mut a = || {
b(yield);
};
Pin::new(&mut a).resume();
}