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