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