You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
structNonSend(*const());implNonSend{fnnoop(&self){}}fnmain(){assert_send(async{let x = NonSend(core::ptr::null());
x.noop();drop(x);async{}.await;});}fnassert_send(_:implSend){}
error: future cannot be sent between threads safely
--> src/main.rs:8:2
|
8 | / assert_send(async {
9 | | let x = NonSend(core::ptr::null());
10 | | x.noop();
11 | | drop(x);
12 | | async {}.await;
13 | | });
| |______^ future created by async block is not `Send`
|
= help: within `{async block@src/main.rs:8:14: 8:19}`, the trait `Send` is not implemented for `*const ()`
note: future is not `Send` as this value is used across an await
--> src/main.rs:12:12
|
9 | let x = NonSend(core::ptr::null());
| - has type `NonSend` which is not `Send`
...
12 | async {}.await;
| ^^^^^ await occurs here, with `x` maybe used later
note: required by a bound in `assert_send`
--> src/main.rs:16:24
|
16 | fn assert_send(_: impl Send) {}
| ^^^^ required by this bound in `assert_send`
error: could not compile `playground` (bin "playground") due to 1 previous error
It states that the non-Send x might be used across the await; however, this is not possible, as it has been dropped.
The text was updated successfully, but these errors were encountered:
This:
Playground
Errors with:
It states that the non-Send
x
might be used across the await; however, this is not possible, as it has been dropped.The text was updated successfully, but these errors were encountered: