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

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

72 lines
1.9 KiB
Rust
Raw Normal View History

#![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) {}
//~^ 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() {
let send_gen = #[coroutine] || {
2023-10-19 21:46:28 +00:00
let _non_send_gen = make_non_send_coroutine();
//~^ NOTE not `Send`
2020-03-25 00:23:50 +00:00
yield;
//~^ 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
//~| NOTE not `Send`
//~| 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> {
//~^ NOTE appears within the type
//~| NOTE expansion of desugaring
#[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
//~^ NOTE expansion of desugaring
2020-03-25 00:23:50 +00:00
make_gen2(Arc::new(RefCell::new(0)))
}
fn test2() {
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);
//~^ ERROR `RefCell<i32>` cannot be shared between threads safely
//~| NOTE `RefCell<i32>` cannot be shared between threads safely
//~| NOTE required for
//~| NOTE use `std::sync::RwLock` instead
2020-03-25 00:23:50 +00:00
}
fn main() {}