]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/issue-68112.stderr
Rollup merge of #100396 - chenyukang:fix-100394, r=petrochenkov
[rust.git] / src / test / ui / async-await / issue-68112.stderr
1 error: future cannot be sent between threads safely
2   --> $DIR/issue-68112.rs:34:5
3    |
4 LL |     require_send(send_fut);
5    |     ^^^^^^^^^^^^ future created by async block is not `Send`
6    |
7    = help: the trait `Sync` is not implemented for `RefCell<i32>`
8 note: future is not `Send` as it awaits another future which is not `Send`
9   --> $DIR/issue-68112.rs:31:17
10    |
11 LL |         let _ = non_send_fut.await;
12    |                 ^^^^^^^^^^^^ await occurs here on type `impl Future<Output = Arc<RefCell<i32>>>`, which is not `Send`
13 note: required by a bound in `require_send`
14   --> $DIR/issue-68112.rs:11:25
15    |
16 LL | fn require_send(_: impl Send) {}
17    |                         ^^^^ required by this bound in `require_send`
18
19 error: future cannot be sent between threads safely
20   --> $DIR/issue-68112.rs:43:5
21    |
22 LL |     require_send(send_fut);
23    |     ^^^^^^^^^^^^ future created by async block is not `Send`
24    |
25    = help: the trait `Sync` is not implemented for `RefCell<i32>`
26 note: future is not `Send` as it awaits another future which is not `Send`
27   --> $DIR/issue-68112.rs:40:17
28    |
29 LL |         let _ = make_non_send_future1().await;
30    |                 ^^^^^^^^^^^^^^^^^^^^^^^ await occurs here on type `impl Future<Output = Arc<RefCell<i32>>>`, which is not `Send`
31 note: required by a bound in `require_send`
32   --> $DIR/issue-68112.rs:11:25
33    |
34 LL | fn require_send(_: impl Send) {}
35    |                         ^^^^ required by this bound in `require_send`
36
37 error[E0277]: `RefCell<i32>` cannot be shared between threads safely
38   --> $DIR/issue-68112.rs:60:5
39    |
40 LL |     require_send(send_fut);
41    |     ^^^^^^^^^^^^ `RefCell<i32>` cannot be shared between threads safely
42    |
43    = help: the trait `Sync` is not implemented for `RefCell<i32>`
44    = note: required because of the requirements on the impl of `Send` for `Arc<RefCell<i32>>`
45 note: required because it's used within this `async fn` body
46   --> $DIR/issue-68112.rs:47:31
47    |
48 LL | async fn ready2<T>(t: T) -> T { t }
49    |                               ^^^^^
50 note: required because it appears within the type `impl Future<Output = Arc<RefCell<i32>>>`
51   --> $DIR/issue-68112.rs:48:31
52    |
53 LL | fn make_non_send_future2() -> impl Future<Output = Arc<RefCell<i32>>> {
54    |                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
55    = note: required because it captures the following types: `ResumeTy`, `impl Future<Output = Arc<RefCell<i32>>>`, `()`, `i32`, `Ready<i32>`
56 note: required because it's used within this `async` block
57   --> $DIR/issue-68112.rs:55:26
58    |
59 LL |       let send_fut = async {
60    |  __________________________^
61 LL | |         let non_send_fut = make_non_send_future2();
62 LL | |         let _ = non_send_fut.await;
63 LL | |         ready(0).await;
64 LL | |     };
65    | |_____^
66 note: required by a bound in `require_send`
67   --> $DIR/issue-68112.rs:11:25
68    |
69 LL | fn require_send(_: impl Send) {}
70    |                         ^^^^ required by this bound in `require_send`
71
72 error: aborting due to 3 previous errors
73
74 For more information about this error, try `rustc --explain E0277`.