blob: 3baaf0623479d1c0b499115ac225affd049efa8a [file] [log] [blame]
#![feature(coroutines)]
fn main() {
#[coroutine]
|(), ()| {
//~^ error: too many parameters for a coroutine
yield;
};
}