diff options
Diffstat (limited to 'tests/ui/builtin-superkinds/builtin-superkinds-in-metadata.stderr')
-rw-r--r-- | tests/ui/builtin-superkinds/builtin-superkinds-in-metadata.stderr | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/ui/builtin-superkinds/builtin-superkinds-in-metadata.stderr b/tests/ui/builtin-superkinds/builtin-superkinds-in-metadata.stderr new file mode 100644 index 000000000..f9d548bb8 --- /dev/null +++ b/tests/ui/builtin-superkinds/builtin-superkinds-in-metadata.stderr @@ -0,0 +1,24 @@ +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 previous error + +For more information about this error, try `rustc --explain E0277`. |