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