summaryrefslogtreecommitdiffstats
path: root/tests/ui/lint/must_not_suspend/tuple-mismatch.rs
blob: 2f3c5d9ea294d07ca7970a978aadd19cbd609a08 (plain)
1
2
3
4
5
6
7
8
9
#![feature(coroutines)]

fn main() {
    let _coroutine = || {
        yield ((), ((), ()));
        yield ((), ());
        //~^ ERROR mismatched types
    };
}