1 2 3 4 5 6 7 8 9
#![feature(generators)] fn main() { let _generator = || { yield ((), ((), ())); yield ((), ()); //~^ ERROR mismatched types }; }