]> git.proxmox.com Git - rustc.git/blame_incremental - src/test/ui/async-await/issue-64130-1-sync.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / issue-64130-1-sync.stderr
... / ...
CommitLineData
1error: future cannot be shared between threads safely
2 --> $DIR/issue-64130-1-sync.rs:21:13
3 |
4LL | is_sync(bar());
5 | ^^^^^ future returned by `bar` is not `Sync`
6 |
7 = help: within `impl Future<Output = ()>`, the trait `Sync` is not implemented for `Foo`
8note: future is not `Sync` as this value is used across an await
9 --> $DIR/issue-64130-1-sync.rs:15:10
10 |
11LL | let x = Foo;
12 | - has type `Foo` which is not `Sync`
13LL | baz().await;
14 | ^^^^^^ await occurs here, with `x` maybe used later
15LL | }
16 | - `x` is later dropped here
17note: required by a bound in `is_sync`
18 --> $DIR/issue-64130-1-sync.rs:11:15
19 |
20LL | fn is_sync<T: Sync>(t: T) { }
21 | ^^^^ required by this bound in `is_sync`
22
23error: aborting due to previous error
24