2023-01-11 22:19:45 -06:00
|
|
|
error: future cannot be sent between threads safely
|
2023-05-01 00:29:36 -05:00
|
|
|
--> $DIR/missing-send-bound.rs:16:20
|
2023-01-11 22:19:45 -06:00
|
|
|
|
|
|
|
|
LL | assert_is_send(test::<T>());
|
|
|
|
| ^^^^^^^^^^^ future returned by `test` is not `Send`
|
|
|
|
|
|
|
|
|
= help: within `impl Future<Output = ()>`, the trait `Send` is not implemented for `impl Future<Output = ()>`
|
|
|
|
note: future is not `Send` as it awaits another future which is not `Send`
|
2023-05-01 00:29:36 -05:00
|
|
|
--> $DIR/missing-send-bound.rs:12:5
|
2023-01-11 22:19:45 -06:00
|
|
|
|
|
|
|
|
LL | T::bar().await;
|
|
|
|
| ^^^^^^^^ await occurs here on type `impl Future<Output = ()>`, which is not `Send`
|
|
|
|
note: required by a bound in `assert_is_send`
|
2023-05-01 00:29:36 -05:00
|
|
|
--> $DIR/missing-send-bound.rs:20:27
|
2023-01-11 22:19:45 -06:00
|
|
|
|
|
|
|
|
LL | fn assert_is_send(_: impl Send) {}
|
|
|
|
| ^^^^ required by this bound in `assert_is_send`
|
|
|
|
|
2023-05-01 00:29:36 -05:00
|
|
|
error: aborting due to previous error
|
2023-01-11 22:19:45 -06:00
|
|
|
|