2019-10-06 23:14:34 +01:00
|
|
|
error: future cannot be sent between threads safely
|
2022-10-01 12:19:31 +02:00
|
|
|
--> $DIR/issue-64130-2-send.rs:24:13
|
2019-10-06 23:14:34 +01:00
|
|
|
|
|
|
|
|
LL | is_send(bar());
|
2021-10-22 13:49:12 -07:00
|
|
|
| ^^^^^ future returned by `bar` is not `Send`
|
2019-10-06 23:14:34 +01:00
|
|
|
|
|
2021-11-16 16:16:23 -08:00
|
|
|
= help: within `impl Future<Output = ()>`, the trait `Send` is not implemented for `Foo`
|
2019-10-06 23:14:34 +01:00
|
|
|
note: future is not `Send` as this value is used across an await
|
2022-10-01 12:19:31 +02:00
|
|
|
--> $DIR/issue-64130-2-send.rs:18:10
|
2019-10-06 23:14:34 +01:00
|
|
|
|
|
|
|
|
LL | let x = Foo;
|
2020-04-08 11:54:31 -07:00
|
|
|
| - has type `Foo` which is not `Send`
|
2019-10-06 23:14:34 +01:00
|
|
|
LL | baz().await;
|
2021-11-16 00:57:53 +00:00
|
|
|
| ^^^^^^ await occurs here, with `x` maybe used later
|
2019-10-06 23:14:34 +01:00
|
|
|
LL | }
|
|
|
|
| - `x` is later dropped here
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
2022-10-01 12:19:31 +02:00
|
|
|
--> $DIR/issue-64130-2-send.rs:14:15
|
2021-07-31 09:26:55 -07:00
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(t: T) { }
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2019-10-06 23:14:34 +01:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|