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

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

33 lines
756 B
Rust
Raw Normal View History

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