summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-70935-complex-spans.drop_tracking_mir.stderr
blob: eb9d93e229fb5d3be2c3bedfae6da7f811d65819 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
error[E0277]: `*mut ()` cannot be shared between threads safely
  --> $DIR/issue-70935-complex-spans.rs:18:23
   |
LL | fn foo(x: NotSync) -> impl Future + Send {
   |                       ^^^^^^^^^^^^^^^^^^ `*mut ()` cannot be shared between threads safely
   |
   = help: within `NotSync`, the trait `Sync` is not implemented for `*mut ()`
note: required because it appears within the type `PhantomData<*mut ()>`
  --> $SRC_DIR/core/src/marker.rs:LL:COL
note: required because it appears within the type `NotSync`
  --> $DIR/issue-70935-complex-spans.rs:12:8
   |
LL | struct NotSync(PhantomData<*mut ()>);
   |        ^^^^^^^
   = note: required for `&NotSync` to implement `Send`
note: required because it's used within this closure
  --> $DIR/issue-70935-complex-spans.rs:22:13
   |
LL |         baz(|| async {
   |             ^^
note: required because it's used within this `async fn` body
  --> $DIR/issue-70935-complex-spans.rs:15:67
   |
LL |   async fn baz<T>(_c: impl FnMut() -> T) where T: Future<Output=()> {
   |  ___________________________________________________________________^
LL | | }
   | |_^
   = note: required because it captures the following types: `impl Future<Output = ()>`
note: required because it's used within this `async` block
  --> $DIR/issue-70935-complex-spans.rs:21:5
   |
LL | /     async move {
LL | |         baz(|| async {
LL | |             foo(x.clone());
LL | |         }).await;
LL | |     }
   | |_____^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.