rust/tests/ui/impl-trait/recursive-coroutine-boxed.rs

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

27 lines
778 B
Rust
Raw Normal View History

2023-11-09 04:08:02 -06:00
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
//@[current] check-pass
2023-12-14 06:11:28 -06:00
//@[next] compile-flags: -Znext-solver
2023-10-19 16:46:28 -05:00
#![feature(coroutines, coroutine_trait)]
2023-10-19 11:06:43 -05:00
use std::ops::{Coroutine, CoroutineState};
2023-10-19 11:06:43 -05:00
fn foo() -> impl Coroutine<Yield = (), Return = ()> {
// FIXME(-Znext-solver): this fails with a mismatched types as the
// hidden type of the opaque ends up as {type error}. We should not
// emit errors for such goals.
2024-10-14 12:04:10 -05:00
#[coroutine] || {
let mut gen = Box::pin(foo());
//[next]~^ ERROR type annotations needed
let mut r = gen.as_mut().resume(());
2023-10-19 11:06:43 -05:00
while let CoroutineState::Yielded(v) = r {
yield v;
r = gen.as_mut().resume(());
}
}
}
fn main() {
foo();
}