2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
2020-03-25 00:23:50 +00:00
|
|
|
|
|
|
|
use std::{
|
|
|
|
cell::RefCell,
|
|
|
|
sync::Arc,
|
|
|
|
pin::Pin,
|
2023-10-19 16:06:43 +00:00
|
|
|
ops::{Coroutine, CoroutineState},
|
2020-03-25 00:23:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
pub struct Ready<T>(Option<T>);
|
2023-10-19 16:06:43 +00:00
|
|
|
impl<T: Unpin> Coroutine<()> for Ready<T> {
|
2020-03-25 00:23:50 +00:00
|
|
|
type Return = T;
|
|
|
|
type Yield = ();
|
2023-10-19 16:06:43 +00:00
|
|
|
fn resume(mut self: Pin<&mut Self>, _args: ()) -> CoroutineState<(), T> {
|
|
|
|
CoroutineState::Complete(self.0.take().unwrap())
|
2020-03-25 00:23:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
pub fn make_gen1<T>(t: T) -> Ready<T> {
|
|
|
|
Ready(Some(t))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn require_send(_: impl Send) {}
|
2022-06-19 18:59:36 +00:00
|
|
|
//~^ NOTE required by a bound
|
|
|
|
//~| NOTE required by a bound
|
|
|
|
//~| NOTE required by this bound
|
|
|
|
//~| NOTE required by this bound
|
2020-03-25 00:23:50 +00:00
|
|
|
|
2023-10-19 21:46:28 +00:00
|
|
|
fn make_non_send_coroutine() -> impl Coroutine<Return = Arc<RefCell<i32>>> {
|
2020-03-25 00:23:50 +00:00
|
|
|
make_gen1(Arc::new(RefCell::new(0)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test1() {
|
2024-04-11 13:15:34 +00:00
|
|
|
let send_gen = #[coroutine] || {
|
2023-10-19 21:46:28 +00:00
|
|
|
let _non_send_gen = make_non_send_coroutine();
|
2022-06-19 18:59:36 +00:00
|
|
|
//~^ NOTE not `Send`
|
2020-03-25 00:23:50 +00:00
|
|
|
yield;
|
2022-06-19 18:59:36 +00:00
|
|
|
//~^ NOTE yield occurs here
|
|
|
|
//~| NOTE value is used across a yield
|
2023-06-24 10:02:54 +00:00
|
|
|
};
|
2020-03-25 00:23:50 +00:00
|
|
|
require_send(send_gen);
|
2023-10-19 21:46:28 +00:00
|
|
|
//~^ ERROR coroutine cannot be sent between threads
|
2022-06-19 18:59:36 +00:00
|
|
|
//~| NOTE not `Send`
|
2023-01-16 17:51:31 +00:00
|
|
|
//~| NOTE use `std::sync::RwLock` instead
|
2020-03-25 00:23:50 +00:00
|
|
|
}
|
|
|
|
|
2023-10-19 16:06:43 +00:00
|
|
|
pub fn make_gen2<T>(t: T) -> impl Coroutine<Return = T> {
|
2022-06-19 18:59:36 +00:00
|
|
|
//~^ NOTE appears within the type
|
|
|
|
//~| NOTE expansion of desugaring
|
2024-04-11 13:15:34 +00:00
|
|
|
#[coroutine] || { //~ NOTE used within this coroutine
|
2020-03-25 00:23:50 +00:00
|
|
|
yield;
|
|
|
|
t
|
|
|
|
}
|
|
|
|
}
|
2023-10-19 21:46:28 +00:00
|
|
|
fn make_non_send_coroutine2() -> impl Coroutine<Return = Arc<RefCell<i32>>> { //~ NOTE appears within the type
|
2022-06-19 18:59:36 +00:00
|
|
|
//~^ NOTE expansion of desugaring
|
2020-03-25 00:23:50 +00:00
|
|
|
make_gen2(Arc::new(RefCell::new(0)))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn test2() {
|
2024-04-11 13:15:34 +00:00
|
|
|
let send_gen = #[coroutine] || { //~ NOTE used within this coroutine
|
2023-10-19 21:46:28 +00:00
|
|
|
let _non_send_gen = make_non_send_coroutine2();
|
2020-03-25 00:23:50 +00:00
|
|
|
yield;
|
|
|
|
};
|
|
|
|
require_send(send_gen);
|
2020-09-02 07:40:56 +00:00
|
|
|
//~^ ERROR `RefCell<i32>` cannot be shared between threads safely
|
2022-06-19 18:59:36 +00:00
|
|
|
//~| NOTE `RefCell<i32>` cannot be shared between threads safely
|
2022-08-15 20:31:37 +00:00
|
|
|
//~| NOTE required for
|
2023-01-16 17:51:31 +00:00
|
|
|
//~| NOTE use `std::sync::RwLock` instead
|
2020-03-25 00:23:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|