blob: 2f3c5d9ea294d07ca7970a978aadd19cbd609a08 [file] [log] [blame]
#![feature(coroutines)]
fn main() {
let _coroutine = || {
yield ((), ((), ()));
yield ((), ());
//~^ ERROR mismatched types
};
}