2023-10-19 21:46:28 +00:00
|
|
|
error: coroutine cannot be sent between threads safely
|
2023-06-24 10:02:54 +00:00
|
|
|
--> $DIR/issue-68112.rs:40:5
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ coroutine is not `Send`
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`, which is required by `{coroutine@$DIR/issue-68112.rs:33:20: 33:22}: Send`
|
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-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:36:9
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
2023-10-19 21:46:28 +00:00
|
|
|
LL | let _non_send_gen = make_non_send_coroutine();
|
2023-10-19 16:06:43 +00:00
|
|
|
| ------------- has type `impl Coroutine<Return = Arc<RefCell<i32>>>` which is not `Send`
|
2022-06-19 13:59:36 -05:00
|
|
|
LL |
|
2020-03-24 17:23:50 -07: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-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:22:25
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-03-24 17:23:50 -07:00
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
error[E0277]: `RefCell<i32>` cannot be shared between threads safely
|
2023-06-24 10:02:54 +00:00
|
|
|
--> $DIR/issue-68112.rs:64:5
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2024-01-24 02:52:29 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
2024-01-29 18:31:02 +00:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`, which is required by `{coroutine@$DIR/issue-68112.rs:60:20: 60:22}: Send`
|
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
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:49:5
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-06-27 07:45:35 +02:00
|
|
|
LL | || {
|
|
|
|
| ^^
|
2023-10-19 16:06:43 +00:00
|
|
|
note: required because it appears within the type `impl Coroutine<Return = Arc<RefCell<i32>>>`
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:46: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
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-10-19 16:06:43 +00:00
|
|
|
note: required because it appears within the type `impl Coroutine<Return = Arc<RefCell<i32>>>`
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:54: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 16:06:43 +00:00
|
|
|
= note: required because it captures the following types: `impl Coroutine<Return = Arc<RefCell<i32>>>`
|
2023-10-19 21:46:28 +00:00
|
|
|
note: required because it's used within this coroutine
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:60:20
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-06-27 07:45:35 +02:00
|
|
|
LL | let send_gen = || {
|
|
|
|
| ^^
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `require_send`
|
2023-05-07 18:38:52 +00:00
|
|
|
--> $DIR/issue-68112.rs:22:25
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-03-24 17:23:50 -07:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|