mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 09:14:20 +00:00
13 lines
325 B
Rust
13 lines
325 B
Rust
#![feature(coroutines, coroutine_trait, never_type)]
|
|
|
|
use std::ops::Coroutine;
|
|
|
|
fn mk_gen() -> impl Coroutine<Return=!, Yield=()> {
|
|
|| { loop { yield; } }
|
|
}
|
|
|
|
fn main() {
|
|
let gens: [impl Coroutine<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
|
|
//~^ `impl Trait` is not allowed in the type of variable bindings
|
|
}
|