rust/src/test/ui/generator/issue-68112.stderr

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

70 lines
2.6 KiB
Plaintext
Raw Normal View History

error: generator cannot be sent between threads safely
--> $DIR/issue-68112.rs:40:5
2020-03-24 19:23:50 -05:00
|
LL | require_send(send_gen);
2020-03-24 20:51:16 -05:00
| ^^^^^^^^^^^^ generator is not `Send`
2020-03-24 19:23:50 -05:00
|
= help: the trait `Sync` is not implemented for `RefCell<i32>`
2020-04-08 13:54:31 -05:00
note: generator is not `Send` as this value is used across a yield
--> $DIR/issue-68112.rs:36: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`
LL |
2020-03-24 19:23:50 -05:00
LL | yield;
| ^^^^^ yield occurs here, with `_non_send_gen` maybe used later
...
2020-03-24 19:23:50 -05:00
LL | };
| - `_non_send_gen` is later dropped here
note: required by a bound in `require_send`
--> $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
--> $DIR/issue-68112.rs:63:5
2020-03-24 19:23:50 -05:00
|
LL | require_send(send_gen);
| ^^^^^^^^^^^^ `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: required because of the requirements on the impl of `Send` for `Arc<RefCell<i32>>`
note: required because it's used within this generator
--> $DIR/issue-68112.rs:48:5
|
LL | / || {
LL | | yield;
LL | | t
LL | | }
| |_____^
note: required because it appears within the type `impl Generator<Return = Arc<RefCell<i32>>>`
--> $DIR/issue-68112.rs:45:30
|
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>>>`
--> $DIR/issue-68112.rs:53:34
|
LL | fn make_non_send_generator2() -> impl Generator<Return = Arc<RefCell<i32>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
= note: required because it captures the following types: `impl Generator<Return = Arc<RefCell<i32>>>`, `()`
note: required because it's used within this generator
--> $DIR/issue-68112.rs:59:20
|
LL | let send_gen = || {
| ____________________^
LL | | let _non_send_gen = make_non_send_generator2();
LL | | yield;
LL | | };
| |_____^
note: required by a bound in `require_send`
--> $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`.