rust/tests/ui/generator/issue-68112.stderr

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

62 lines
2.5 KiB
Plaintext
Raw Normal View History

error: generator cannot be sent between threads safely
2023-06-24 05:02:54 -05:00
--> $DIR/issue-68112.rs:40:5
2020-03-24 19:23:50 -05:00
|
LL | require_send(send_gen);
2023-06-24 05:02:54 -05:00
| ^^^^^^^^^^^^ generator is not `Send`
2020-03-24 19:23:50 -05:00
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
= 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
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:36:9
2020-03-24 19:23:50 -05:00
|
LL | let _non_send_gen = make_non_send_generator();
2023-10-19 11:06:43 -05:00
| ------------- has type `impl Coroutine<Return = Arc<RefCell<i32>>>` which is not `Send`
LL |
2020-03-24 19:23:50 -05:00
LL | yield;
| ^^^^^ yield occurs here, with `_non_send_gen` maybe used later
note: required by a bound in `require_send`
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:22:25
|
LL | fn require_send(_: impl Send) {}
| ^^^^ required by this bound in `require_send`
2020-03-24 19:23:50 -05:00
error[E0277]: `RefCell<i32>` cannot be shared between threads safely
2023-06-24 05:02:54 -05:00
--> $DIR/issue-68112.rs:64:5
2020-03-24 19:23:50 -05:00
|
LL | require_send(send_gen);
2023-06-24 05:02:54 -05:00
| ^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
2020-03-24 19:23:50 -05:00
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
= note: required for `Arc<RefCell<i32>>` to implement `Send`
note: required because it's used within this generator
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:49:5
|
2022-06-27 00:45:35 -05:00
LL | || {
| ^^
2023-10-19 11:06:43 -05:00
note: required because it appears within the type `impl Coroutine<Return = Arc<RefCell<i32>>>`
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:46:30
|
2023-10-19 11:06:43 -05:00
LL | pub fn make_gen2<T>(t: T) -> impl Coroutine<Return = T> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2023-10-19 11:06:43 -05:00
note: required because it appears within the type `impl Coroutine<Return = Arc<RefCell<i32>>>`
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:54:34
|
2023-10-19 11:06:43 -05:00
LL | fn make_non_send_generator2() -> impl Coroutine<Return = Arc<RefCell<i32>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2023-10-19 11:06:43 -05:00
= note: required because it captures the following types: `impl Coroutine<Return = Arc<RefCell<i32>>>`
note: required because it's used within this generator
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:60:20
|
2022-06-27 00:45:35 -05:00
LL | let send_gen = || {
| ^^
note: required by a bound in `require_send`
2023-05-07 13:38:52 -05:00
--> $DIR/issue-68112.rs:22:25
|
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`.