mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
13 lines
348 B
Rust
13 lines
348 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` only allowed in function and inherent method argument and return types
|
|
}
|