Sign in
rust
/
rust
/
e8a00a7621606f8c4a34b679cefaaa6aecf2442e
/
.
/
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
;
};
}