2020-03-24 23:13:05 -05:00
|
|
|
error: generator cannot be sent between threads safely
|
2023-01-25 21:51:26 -06:00
|
|
|
--> $DIR/issue-68112.rs:43:5
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2023-01-25 21:51:26 -06:00
|
|
|
| ^^^^^^^^^^^^ generator is not `Send`
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
|
2023-01-16 11:51:31 -06:00
|
|
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
|
2020-04-08 13:54:31 -05:00
|
|
|
note: generator is not `Send` as this value is used across a yield
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:39:9
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
|
|
|
LL | let _non_send_gen = make_non_send_generator();
|
2021-11-19 22:51:44 -06:00
|
|
|
| ------------- has type `impl Generator<Return = Arc<RefCell<i32>>>` which is not `Send`
|
2022-06-19 13:59:36 -05:00
|
|
|
LL |
|
2020-03-24 19:23:50 -05:00
|
|
|
LL | yield;
|
|
|
|
| ^^^^^ yield occurs here, with `_non_send_gen` maybe used later
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `require_send`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:25:25
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-03-24 19:23:50 -05:00
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
error[E0277]: `RefCell<i32>` cannot be shared between threads safely
|
2023-01-25 21:51:26 -06:00
|
|
|
--> $DIR/issue-68112.rs:67:5
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
|
|
|
LL | require_send(send_gen);
|
2023-01-25 21:51:26 -06:00
|
|
|
| ^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
|
2023-01-16 11:51:31 -06:00
|
|
|
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `Arc<RefCell<i32>>` to implement `Send`
|
2022-06-19 13:59:36 -05:00
|
|
|
note: required because it's used within this generator
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:52:5
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-06-27 00:45:35 -05:00
|
|
|
LL | || {
|
|
|
|
| ^^
|
2022-06-19 13:59:36 -05:00
|
|
|
note: required because it appears within the type `impl Generator<Return = Arc<RefCell<i32>>>`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:49:30
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
|
|
|
LL | pub fn make_gen2<T>(t: T) -> impl Generator<Return = T> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
note: required because it appears within the type `impl Generator<Return = Arc<RefCell<i32>>>`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:57:34
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
|
|
|
LL | fn make_non_send_generator2() -> impl Generator<Return = Arc<RefCell<i32>>> {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2023-01-25 21:51:26 -06:00
|
|
|
= note: required because it captures the following types: `impl Generator<Return = Arc<RefCell<i32>>>`
|
2022-06-19 13:59:36 -05:00
|
|
|
note: required because it's used within this generator
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:63:20
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-06-27 00:45:35 -05:00
|
|
|
LL | let send_gen = || {
|
|
|
|
| ^^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `require_send`
|
2022-10-01 05:19:31 -05:00
|
|
|
--> $DIR/issue-68112.rs:25:25
|
2021-07-31 11:26:55 -05:00
|
|
|
|
|
|
|
|
LL | fn require_send(_: impl Send) {}
|
|
|
|
| ^^^^ required by this bound in `require_send`
|
2020-03-24 19:23:50 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|