rust/tests/ui/generator/issue-87142.rs

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

33 lines
751 B
Rust
Raw Normal View History

2022-06-04 07:17:34 -05:00
// compile-flags: -Cdebuginfo=2
// build-pass
// Regression test for #87142
// This test needs the above flags and the "lib" crate type.
#![feature(impl_trait_in_assoc_type, generator_trait, generators)]
2022-06-04 07:17:34 -05:00
#![crate_type = "lib"]
use std::ops::Generator;
pub trait GeneratorProviderAlt: Sized {
type Gen: Generator<(), Return = (), Yield = ()>;
fn start(ctx: Context<Self>) -> Self::Gen;
}
pub struct Context<G: 'static + GeneratorProviderAlt> {
pub link: Box<G::Gen>,
}
impl GeneratorProviderAlt for () {
type Gen = impl Generator<(), Return = (), Yield = ()>;
fn start(ctx: Context<Self>) -> Self::Gen {
move || {
match ctx {
_ => (),
}
yield ();
}
}
}