rust/tests/ui/lint/must_not_suspend/tuple-mismatch.rs

11 lines
201 B
Rust

#![feature(coroutines, stmt_expr_attributes)]
fn main() {
let _coroutine = #[coroutine]
|| {
yield ((), ((), ()));
yield ((), ());
//~^ ERROR mismatched types
};
}