2022-06-19 13:59:36 -05:00
|
|
|
error[E0277]: `Sender<i32>` cannot be shared between threads safely
|
2022-09-13 16:38:28 -05:00
|
|
|
--> $DIR/issue-70935-complex-spans.rs:13:45
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
|
|
|
LL | fn foo(tx: std::sync::mpsc::Sender<i32>) -> impl Future + Send {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ `Sender<i32>` cannot be shared between threads safely
|
|
|
|
|
|
|
|
|
= help: the trait `Sync` is not implemented for `Sender<i32>`
|
2022-08-15 15:31:37 -05:00
|
|
|
= note: required for `&Sender<i32>` to implement `Send`
|
2022-06-19 13:59:36 -05:00
|
|
|
note: required because it's used within this closure
|
2022-09-13 16:38:28 -05:00
|
|
|
--> $DIR/issue-70935-complex-spans.rs:17:13
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-06-27 00:45:35 -05:00
|
|
|
LL | baz(|| async{
|
|
|
|
| ^^
|
2022-06-21 19:43:46 -05:00
|
|
|
note: required because it's used within this `async fn` body
|
2022-09-13 16:38:28 -05:00
|
|
|
--> $DIR/issue-70935-complex-spans.rs:10:67
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
|
|
|
LL | async fn baz<T>(_c: impl FnMut() -> T) where T: Future<Output=()> {
|
|
|
|
| ___________________________________________________________________^
|
|
|
|
LL | | }
|
|
|
|
| |_^
|
2022-12-19 13:24:59 -06:00
|
|
|
= note: required because it captures the following types: `ResumeTy`, `impl Future<Output = ()>`, `()`
|
2022-06-21 19:43:46 -05:00
|
|
|
note: required because it's used within this `async` block
|
2022-11-18 15:56:22 -06:00
|
|
|
--> $DIR/issue-70935-complex-spans.rs:16:5
|
2022-06-19 13:59:36 -05:00
|
|
|
|
|
2022-11-18 15:56:22 -06:00
|
|
|
LL | / async move {
|
2022-06-19 13:59:36 -05:00
|
|
|
LL | | baz(|| async{
|
|
|
|
LL | | foo(tx.clone());
|
|
|
|
LL | | }).await;
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|