mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
25 lines
1.0 KiB
Plaintext
25 lines
1.0 KiB
Plaintext
error[E0277]: `T` cannot be sent between threads safely
|
|
--> $DIR/builtin-superkinds-in-metadata.rs:13:56
|
|
|
|
|
LL | impl <T:Sync+'static> RequiresRequiresShareAndSend for X<T> { }
|
|
| ^^^^ `T` cannot be sent between threads safely
|
|
|
|
|
note: required because it appears within the type `X<T>`
|
|
--> $DIR/builtin-superkinds-in-metadata.rs:9:8
|
|
|
|
|
LL | struct X<T>(T);
|
|
| ^
|
|
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`
|
|
help: consider further restricting this bound
|
|
|
|
|
LL | impl <T:Sync+'static + std::marker::Send> RequiresRequiresShareAndSend for X<T> { }
|
|
| +++++++++++++++++++
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|