2022-10-01 10:19:31 +00:00
|
|
|
error: future cannot be sent between threads safely
|
|
|
|
--> $DIR/issue-64130-2-send.rs:24:13
|
|
|
|
|
|
|
|
|
LL | is_send(bar());
|
|
|
|
| ^^^^^ future returned by `bar` is not `Send`
|
|
|
|
|
|
2023-01-26 03:51:26 +00:00
|
|
|
= note: the trait bound `Unique<Foo>: Send` is not satisfied
|
2022-10-01 10:19:31 +00:00
|
|
|
note: future is not `Send` as this value is used across an await
|
2023-04-25 18:59:16 +00:00
|
|
|
--> $DIR/issue-64130-2-send.rs:18:11
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
2023-01-26 03:51:26 +00:00
|
|
|
LL | let x = Box::new(Foo);
|
|
|
|
| - has type `Box<Foo>` which is not `Send`
|
2022-10-01 10:19:31 +00:00
|
|
|
LL | baz().await;
|
2023-04-25 18:59:16 +00:00
|
|
|
| ^^^^^ await occurs here, with `x` maybe used later
|
2022-10-01 10:19:31 +00:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/issue-64130-2-send.rs:14:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(t: T) { }
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2023-01-26 03:51:26 +00:00
|
|
|
help: consider borrowing here
|
|
|
|
|
|
|
|
|
LL | is_send(&bar());
|
|
|
|
| +
|
2022-10-01 10:19:31 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|