2020-01-18 22:59:59 -06:00
|
|
|
error: future cannot be sent between threads safely
|
|
|
|
--> $DIR/issue-65436-raw-ptr-not-send.rs:12:5
|
|
|
|
|
|
|
|
|
LL | assert_send(async {
|
2020-03-24 20:51:16 -05:00
|
|
|
| ^^^^^^^^^^^ future created by async block is not `Send`
|
2020-01-18 22:59:59 -06:00
|
|
|
|
|
2022-03-30 21:26:35 -05:00
|
|
|
= help: within `impl Future<Output = ()>`, the trait `Send` is not implemented for `*const u8`
|
2020-01-18 22:59:59 -06:00
|
|
|
note: future is not `Send` as this value is used across an await
|
2021-11-15 18:57:53 -06:00
|
|
|
--> $DIR/issue-65436-raw-ptr-not-send.rs:14:35
|
2020-01-18 22:59:59 -06:00
|
|
|
|
|
|
|
|
LL | bar(Foo(std::ptr::null())).await;
|
2021-12-02 17:41:45 -06:00
|
|
|
| ---------------- ^^^^^^ await occurs here, with `std::ptr::null()` maybe used later
|
|
|
|
| |
|
2020-11-02 01:54:53 -06:00
|
|
|
| has type `*const u8` which is not `Send`
|
2021-12-02 17:41:45 -06:00
|
|
|
note: `std::ptr::null()` is later dropped here
|
|
|
|
--> $DIR/issue-65436-raw-ptr-not-send.rs:14:41
|
|
|
|
|
|
|
|
|
LL | bar(Foo(std::ptr::null())).await;
|
|
|
|
| ^
|
2020-01-18 22:59:59 -06:00
|
|
|
help: consider moving this into a `let` binding to create a shorter lived borrow
|
|
|
|
--> $DIR/issue-65436-raw-ptr-not-send.rs:14:13
|
|
|
|
|
|
|
|
|
LL | bar(Foo(std::ptr::null())).await;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `assert_send`
|
|
|
|
--> $DIR/issue-65436-raw-ptr-not-send.rs:9:19
|
|
|
|
|
|
|
|
|
LL | fn assert_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `assert_send`
|
2020-01-18 22:59:59 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|