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

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

34 lines
779 B
Rust
Raw Normal View History

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