]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/issues/issue-65436-raw-ptr-not-send.no_drop_tracking.stderr
Rollup merge of #103766 - lukas-code:error-in-core, r=Dylan-DPC
[rust.git] / src / test / ui / async-await / issues / issue-65436-raw-ptr-not-send.no_drop_tracking.stderr
1 error: future cannot be sent between threads safely
2   --> $DIR/issue-65436-raw-ptr-not-send.rs:16:17
3    |
4 LL |       assert_send(async {
5    |  _________________^
6 LL | |
7 LL | |         bar(Foo(std::ptr::null())).await;
8 LL | |     })
9    | |_____^ future created by async block is not `Send`
10    |
11    = help: within `impl Future<Output = ()>`, the trait `Send` is not implemented for `*const u8`
12 note: future is not `Send` as this value is used across an await
13   --> $DIR/issue-65436-raw-ptr-not-send.rs:18:35
14    |
15 LL |         bar(Foo(std::ptr::null())).await;
16    |                 ----------------  ^^^^^^ await occurs here, with `std::ptr::null()` maybe used later
17    |                 |
18    |                 has type `*const u8` which is not `Send`
19 note: `std::ptr::null()` is later dropped here
20   --> $DIR/issue-65436-raw-ptr-not-send.rs:18:41
21    |
22 LL |         bar(Foo(std::ptr::null())).await;
23    |                                         ^
24 help: consider moving this into a `let` binding to create a shorter lived borrow
25   --> $DIR/issue-65436-raw-ptr-not-send.rs:18:13
26    |
27 LL |         bar(Foo(std::ptr::null())).await;
28    |             ^^^^^^^^^^^^^^^^^^^^^
29 note: required by a bound in `assert_send`
30   --> $DIR/issue-65436-raw-ptr-not-send.rs:13:19
31    |
32 LL | fn assert_send<T: Send>(_: T) {}
33    |                   ^^^^ required by this bound in `assert_send`
34
35 error: aborting due to previous error
36