mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 05:01:11 +00:00
10 lines
149 B
Rust
10 lines
149 B
Rust
#![feature(coroutines)]
|
|
|
|
fn main() {
|
|
#[coroutine]
|
|
|(), ()| {
|
|
//~^ error: too many parameters for a coroutine
|
|
yield;
|
|
};
|
|
}
|