2023-03-30 03:51:27 +00:00
error[E0277]: `impl Future<Output = ()>` cannot be sent between threads safely
2023-03-29 22:18:20 +02:00
--> $DIR/auto-with-drop_tracking_mir.rs:25:13
2023-03-30 03:51:27 +00:00
|
LL | is_send(foo());
| ------- ^^^^^ `impl Future<Output = ()>` cannot be sent between threads safely
| |
| required by a bound introduced by this call
|
= help: the trait `Send` is not implemented for `impl Future<Output = ()>`
2021-09-14 15:44:08 +00:00
= note: consider using `std::sync::Arc<impl Future<Output = ()>>`; for more information visit <https://doc.rust-lang.org/book/ch16-03-shared-state.html>
2023-03-30 03:51:27 +00:00
note: required by a bound in `is_send`
2023-03-29 22:18:20 +02:00
--> $DIR/auto-with-drop_tracking_mir.rs:24:24
2023-03-30 03:51:27 +00:00
|
LL | fn is_send(_: impl Send) {}
| ^^^^ required by this bound in `is_send`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.