2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
2022-12-17 19:20:29 +00:00
|
|
|
|
|
|
|
|
fn main() {
|
2024-04-11 13:15:34 +00:00
|
|
|
let _coroutine = #[coroutine]
|
|
|
|
|
|| {
|
2022-12-17 19:20:29 +00:00
|
|
|
yield ((), ((), ()));
|
|
|
|
|
yield ((), ());
|
|
|
|
|
//~^ ERROR mismatched types
|
|
|
|
|
};
|
|
|
|
|
}
|