os-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 21:17:34 +09:00
// compile-flags: -Cdebuginfo=2
// build-pass
// Regression test for #87142
// This test needs the above flags and the "lib" crate type.
2023-10-19 21:46:28 +00:00
#![feature(impl_trait_in_assoc_type, coroutine_trait, coroutines)]
2022-06-04 21:17:34 +09:00
#![crate_type = "lib"]
2023-10-19 16:06:43 +00:00
use std::ops::Coroutine;
2022-06-04 21:17:34 +09:00
2023-10-19 16:06:43 +00:00
pub trait CoroutineProviderAlt: Sized {
type Gen: Coroutine<(), Return = (), Yield = ()>;
2022-06-04 21:17:34 +09:00
fn start(ctx: Context<Self>) -> Self::Gen;
}
2023-10-19 16:06:43 +00:00
pub struct Context<G: 'static + CoroutineProviderAlt> {
2022-06-04 21:17:34 +09:00
pub link: Box<G::Gen>,
}
2023-10-19 16:06:43 +00:00
impl CoroutineProviderAlt for () {
type Gen = impl Coroutine<(), Return = (), Yield = ()>;
2022-06-04 21:17:34 +09:00
fn start(ctx: Context<Self>) -> Self::Gen {
move || {
match ctx {
_ => (),
}
yield ();
}
}
}