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

33 lines
756 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.
2023-10-19 16:46:28 -05:00
#![feature(impl_trait_in_assoc_type, coroutine_trait, coroutines)]
2022-06-04 07:17:34 -05:00
#![crate_type = "lib"]
2023-10-19 11:06:43 -05:00
use std::ops::Coroutine;
2022-06-04 07:17:34 -05:00
2023-10-19 11:06:43 -05:00
pub trait CoroutineProviderAlt: Sized {
2023-10-20 04:45:18 -05:00
type Coro: Coroutine<(), Return = (), Yield = ()>;
2022-06-04 07:17:34 -05:00
2023-10-20 04:45:18 -05:00
fn start(ctx: Context<Self>) -> Self::Coro;
2022-06-04 07:17:34 -05:00
}
2023-10-19 11:06:43 -05:00
pub struct Context<G: 'static + CoroutineProviderAlt> {
2023-10-20 04:45:18 -05:00
pub link: Box<G::Coro>,
2022-06-04 07:17:34 -05:00
}
2023-10-19 11:06:43 -05:00
impl CoroutineProviderAlt for () {
2023-10-20 04:45:18 -05:00
type Coro = impl Coroutine<(), Return = (), Yield = ()>;
fn start(ctx: Context<Self>) -> Self::Coro {
2022-06-04 07:17:34 -05:00
move || {
match ctx {
_ => (),
}
yield ();
}
}
}