2023-10-19 21:46:28 +00:00
|
|
|
error: coroutine cannot be sent between threads safely
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:37:5
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ coroutine is not `Send`
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
2024-10-24 21:14:17 +00:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
|
2023-01-16 18:51:31 +01:00
|
|
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
|
2023-10-19 21:46:28 +00:00
|
|
|
note: coroutine is not `Send` as this value is used across a yield
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:35:9
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
2023-10-19 21:46:28 +00:00
|
|
|
LL | let _non_send_gen = make_non_send_coroutine();
|
2024-08-24 01:44:52 +00:00
|
|
|
| ------------- has type `Opaque(DefId(0:24 ~ coroutine_print_verbose_1[75fb]::make_non_send_coroutine::{opaque#0}), [])` which is not `Send`
|
2020-09-10 23:41:02 -04:00
|
|
|
LL | yield;
|
|
|
|
|
| ^^^^^ yield occurs here, with `_non_send_gen` maybe used later
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `require_send`
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:26:25
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
|
|
|
error[E0277]: `RefCell<i32>` cannot be shared between threads safely
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:56:5
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
2024-10-24 21:14:17 +00:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
|
2023-01-16 18:51:31 +01:00
|
|
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
|
2022-08-15 21:31:37 +01:00
|
|
|
= note: required for `Arc<RefCell<i32>>` to implement `Send`
|
2023-10-19 21:46:28 +00:00
|
|
|
note: required because it's used within this coroutine
|
2024-04-11 13:15:34 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:42:18
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2024-04-11 13:15:34 +00:00
|
|
|
LL | #[coroutine] || {
|
|
|
|
|
| ^^
|
2024-08-24 01:44:52 +00:00
|
|
|
note: required because it appears within the type `Opaque(DefId(0:29 ~ coroutine_print_verbose_1[75fb]::make_gen2::{opaque#0}), [Arc<RefCell<i32>>])`
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:41:30
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2023-10-19 16:06:43 +00:00
|
|
|
LL | pub fn make_gen2<T>(t: T) -> impl Coroutine<Return = T> {
|
2022-06-19 13:59:36 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-08-24 01:44:52 +00:00
|
|
|
note: required because it appears within the type `Opaque(DefId(0:32 ~ coroutine_print_verbose_1[75fb]::make_non_send_coroutine2::{opaque#0}), [])`
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:47:34
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2023-10-19 21:46:28 +00:00
|
|
|
LL | fn make_non_send_coroutine2() -> impl Coroutine<Return = Arc<RefCell<i32>>> {
|
2022-06-19 13:59:36 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-10-19 21:46:28 +00:00
|
|
|
note: required because it's used within this coroutine
|
2024-04-11 13:15:34 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:52:33
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2024-04-11 13:15:34 +00:00
|
|
|
LL | let send_gen = #[coroutine] || {
|
|
|
|
|
| ^^
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `require_send`
|
2023-10-20 10:06:08 +00:00
|
|
|
--> $DIR/coroutine-print-verbose-1.rs:26:25
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-09-10 23:41:02 -04:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|