2022-01-05 16:11:37 -06:00
|
|
|
error: generator cannot be sent between threads safely
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:14:5
|
2022-01-05 16:11:37 -06:00
|
|
|
|
|
|
|
|
LL | assert_send(|| {
|
|
|
|
| ^^^^^^^^^^^ generator is not `Send`
|
|
|
|
|
|
2022-02-28 14:55:50 -06:00
|
|
|
= help: within `[generator@$DIR/partial-drop.rs:14:17: 20:6]`, the trait `Send` is not implemented for `Foo`
|
2022-01-05 16:11:37 -06:00
|
|
|
note: generator is not `Send` as this value is used across a yield
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:19:9
|
2022-01-05 16:11:37 -06:00
|
|
|
|
|
|
|
|
LL | let guard = Bar { foo: Foo, x: 42 };
|
|
|
|
| ----- has type `Bar` which is not `Send`
|
|
|
|
LL | drop(guard.foo);
|
|
|
|
LL | yield;
|
|
|
|
| ^^^^^ yield occurs here, with `guard` maybe used later
|
2022-01-14 19:45:00 -06:00
|
|
|
LL | });
|
2022-01-05 16:11:37 -06:00
|
|
|
| - `guard` is later dropped here
|
|
|
|
note: required by a bound in `assert_send`
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:42:19
|
2022-01-05 16:11:37 -06:00
|
|
|
|
|
|
|
|
LL | fn assert_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_send`
|
|
|
|
|
2022-01-14 19:45:00 -06:00
|
|
|
error: generator cannot be sent between threads safely
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:22:5
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | assert_send(|| {
|
|
|
|
| ^^^^^^^^^^^ generator is not `Send`
|
|
|
|
|
|
2022-02-28 14:55:50 -06:00
|
|
|
= help: within `[generator@$DIR/partial-drop.rs:22:17: 30:6]`, the trait `Send` is not implemented for `Foo`
|
2022-01-14 19:45:00 -06:00
|
|
|
note: generator is not `Send` as this value is used across a yield
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:29:9
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | let guard = Bar { foo: Foo, x: 42 };
|
|
|
|
| ----- has type `Bar` which is not `Send`
|
|
|
|
...
|
|
|
|
LL | yield;
|
|
|
|
| ^^^^^ yield occurs here, with `guard` maybe used later
|
|
|
|
LL | });
|
|
|
|
| - `guard` is later dropped here
|
|
|
|
note: required by a bound in `assert_send`
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:42:19
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | fn assert_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_send`
|
|
|
|
|
|
|
|
error: generator cannot be sent between threads safely
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:32:5
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | assert_send(|| {
|
|
|
|
| ^^^^^^^^^^^ generator is not `Send`
|
|
|
|
|
|
2022-02-28 14:55:50 -06:00
|
|
|
= help: within `[generator@$DIR/partial-drop.rs:32:17: 39:6]`, the trait `Send` is not implemented for `Foo`
|
2022-01-14 19:45:00 -06:00
|
|
|
note: generator is not `Send` as this value is used across a yield
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:38:9
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | let guard = Bar { foo: Foo, x: 42 };
|
|
|
|
| ----- has type `Bar` which is not `Send`
|
|
|
|
...
|
|
|
|
LL | yield;
|
|
|
|
| ^^^^^ yield occurs here, with `guard` maybe used later
|
|
|
|
LL | });
|
|
|
|
| - `guard` is later dropped here
|
|
|
|
note: required by a bound in `assert_send`
|
2022-02-28 14:55:50 -06:00
|
|
|
--> $DIR/partial-drop.rs:42:19
|
2022-01-14 19:45:00 -06:00
|
|
|
|
|
|
|
|
LL | fn assert_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_send`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2022-01-05 16:11:37 -06:00
|
|
|
|