Sign in
rust
/
rust
/
2d3dfece0346f805c6d4fa86c2e8a20ca3eef6ca
/
.
/
tests
/
ui
/
coroutine
/
too-many-parameters.rs
blob: 3baaf0623479d1c0b499115ac225affd049efa8a [
file
]
#![
feature
(
coroutines
)]
fn
main
()
{
#[
coroutine
]
|(),
()|
{
//~^ error: too many parameters for a coroutine
yield
;
};
}