rust/tests/ui/async-await/issue-70935-complex-spans.no_drop_tracking.stderr

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

22 lines
869 B
Plaintext
Raw Normal View History

error: future cannot be sent between threads safely
2022-09-13 16:38:28 -05:00
--> $DIR/issue-70935-complex-spans.rs:13:45
|
LL | fn foo(tx: std::sync::mpsc::Sender<i32>) -> impl Future + Send {
| ^^^^^^^^^^^^^^^^^^ future created by async block is not `Send`
|
= help: the trait `Sync` is not implemented for `Sender<i32>`
note: future is not `Send` as this value is used across an await
2022-09-13 16:38:28 -05:00
--> $DIR/issue-70935-complex-spans.rs:19:11
2020-10-22 00:15:40 -05:00
|
LL | baz(|| async{
| _____________-
2020-10-22 00:15:40 -05:00
LL | | foo(tx.clone());
LL | | }).await;
| | - ^^^^^^- the value is later dropped here
| | | |
| |_________| await occurs here, with the value maybe used later
2022-09-13 16:38:28 -05:00
| has type `[closure@$DIR/issue-70935-complex-spans.rs:17:13: 17:15]` which is not `Send`
error: aborting due to previous error