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