blob: f379d97bd76c896b06bf9068f4900e5999fcd22b [file] [log] [blame]
error[E0277]: `T` cannot be sent between threads safely
--> $DIR/builtin-superkinds-in-metadata.rs:13:23
|
LL | impl <T:Sync+'static> RequiresRequiresShareAndSend for X<T> { }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `T` cannot be sent between threads safely
|
= help: within `X<T>`, the trait `std::marker::Send` is not implemented for `T`
help: consider further restricting this bound with `+ std::marker::Send`
--> $DIR/builtin-superkinds-in-metadata.rs:13:9
|
LL | impl <T:Sync+'static> RequiresRequiresShareAndSend for X<T> { }
| ^^^^^^^^^^^^
= note: required because it appears within the type `X<T>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.