// compile-flags: -Zverbose // Same as: tests/ui/coroutine/issue-68112.stderr #![feature(coroutines, coroutine_trait)] use std::{ cell::RefCell, sync::Arc, pin::Pin, ops::{Coroutine, CoroutineState}, }; pub struct Ready(Option); impl Coroutine<()> for Ready { type Return = T; type Yield = (); fn resume(mut self: Pin<&mut Self>, _args: ()) -> CoroutineState<(), T> { CoroutineState::Complete(self.0.take().unwrap()) } } pub fn make_gen1(t: T) -> Ready { Ready(Some(t)) } fn require_send(_: impl Send) {} fn make_non_send_coroutine() -> impl Coroutine>> { make_gen1(Arc::new(RefCell::new(0))) } fn test1() { let send_gen = || { let _non_send_gen = make_non_send_coroutine(); yield; }; require_send(send_gen); //~^ ERROR coroutine cannot be sent between threads } pub fn make_gen2(t: T) -> impl Coroutine { || { yield; t } } fn make_non_send_coroutine2() -> impl Coroutine>> { make_gen2(Arc::new(RefCell::new(0))) } fn test2() { let send_gen = || { let _non_send_gen = make_non_send_coroutine2(); yield; }; require_send(send_gen); //~^ ERROR `RefCell` cannot be shared between threads safely } fn main() {}