2018-08-08 07:28:26 -05:00
|
|
|
error[E0277]: `T` cannot be sent between threads safely
|
2023-01-12 14:15:00 -06:00
|
|
|
--> $DIR/builtin-superkinds-in-metadata.rs:13:56
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | impl <T:Sync+'static> RequiresRequiresShareAndSend for X<T> { }
|
2023-01-12 14:15:00 -06:00
|
|
|
| ^^^^ `T` cannot be sent between threads safely
|
2021-06-10 06:52:00 -05:00
|
|
|
|
|
2021-03-30 15:37:30 -05:00
|
|
|
note: required because it appears within the type `X<T>`
|
|
|
|
--> $DIR/builtin-superkinds-in-metadata.rs:9:8
|
|
|
|
|
|
|
|
|
LL | struct X<T>(T);
|
|
|
|
| ^
|
2021-07-31 11:26:55 -05:00
|
|
|
note: required by a bound in `RequiresRequiresShareAndSend`
|
|
|
|
--> $DIR/auxiliary/trait_superkinds_in_metadata.rs:7:58
|
|
|
|
|
|
|
|
|
LL | pub trait RequiresRequiresShareAndSend : RequiresShare + Send { }
|
|
|
|
| ^^^^ required by this bound in `RequiresRequiresShareAndSend`
|
2020-03-13 21:28:14 -05:00
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2021-03-30 04:56:39 -05:00
|
|
|
LL | impl <T:Sync+'static + std::marker::Send> RequiresRequiresShareAndSend for X<T> { }
|
2021-06-21 21:07:19 -05:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|