rust/tests/ui/impl-trait/issues/issue-58504.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
335 B
Rust
Raw Normal View History

#![feature(generators, generator_trait, never_type)]
use std::ops::Generator;
fn mk_gen() -> impl Generator<Return=!, Yield=()> {
|| { loop { yield; } }
}
fn main() {
let gens: [impl Generator<Return=!, Yield=()>;2] = [ mk_gen(), mk_gen() ];
2022-02-17 21:18:42 -06:00
//~^ `impl Trait` only allowed in function and inherent method return types
}