Rollup merge of #97731 - JohnTitor:issue-87142, r=compiler-errors

Add regresion test for #87142

Closes #87142
r? `@compiler-errors`
This commit is contained in:
Matthias Krüger 2022-06-04 23:42:03 +02:00 committed by GitHub
commit c857265b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,32 @@
// compile-flags: -Cdebuginfo=2
// build-pass
// Regression test for #87142
// This test needs the above flags and the "lib" crate type.
#![feature(type_alias_impl_trait, generator_trait, generators)]
#![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 ();
}
}
}