2018-08-08 12:28:26 +00:00
|
|
|
error[E0277]: `T` cannot be sent between threads safely
|
2023-01-12 20:15:00 +00:00
|
|
|
--> $DIR/builtin-superkinds-in-metadata.rs:13:56
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl <T:Sync+'static> RequiresRequiresShareAndSend for X<T> { }
|
2023-01-12 20:15:00 +00:00
|
|
|
| ^^^^ `T` cannot be sent between threads safely
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2021-03-30 20:37:30 +00: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 16:26:55 +00: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-14 02:28:14 +00:00
|
|
|
help: consider further restricting this bound
|
|
|
|
|
|
2021-03-30 09:56:39 +00:00
|
|
|
LL | impl <T:Sync+'static + std::marker::Send> RequiresRequiresShareAndSend for X<T> { }
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|