summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/issue-70935-complex-spans.normal.stderr
blob: 2b81b400099f4049316a20c1a9d3b121ec61b331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error: future cannot be sent between threads safely
  --> $DIR/issue-70935-complex-spans.rs:12: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
  --> $DIR/issue-70935-complex-spans.rs:18:11
   |
LL |           baz(|| async{
   |  _____________-
LL | |             foo(tx.clone());
LL | |         }).await;
   | |         - ^^^^^^ await occurs here, with the value maybe used later
   | |_________|
   |           has type `[closure@$DIR/issue-70935-complex-spans.rs:16:13: 16:15]` which is not `Send`
note: the value is later dropped here
  --> $DIR/issue-70935-complex-spans.rs:18:17
   |
LL |         }).await;
   |                 ^

error: aborting due to previous error