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-double-superkind.rs:6:32
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl <T: Sync+'static> Foo for (T,) { }
|
2023-01-12 20:15:00 +00:00
|
|
|
| ^^^^ `T` cannot be sent between threads safely
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: required because it appears within the type `(T,)`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/builtin-superkinds-double-superkind.rs:4:13
|
|
|
|
|
|
|
|
|
LL | trait Foo : Send+Sync { }
|
|
|
|
| ^^^^ required by this bound in `Foo`
|
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> Foo for (T,) { }
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error[E0277]: `T` cannot be shared between threads safely
|
2023-01-12 20:15:00 +00:00
|
|
|
--> $DIR/builtin-superkinds-double-superkind.rs:9:24
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | impl <T: Send> Foo for (T,T) { }
|
2023-01-12 20:15:00 +00:00
|
|
|
| ^^^^^ `T` cannot be shared between threads safely
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
= note: required because it appears within the type `(T, T)`
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/builtin-superkinds-double-superkind.rs:4:18
|
|
|
|
|
|
|
|
|
LL | trait Foo : Send+Sync { }
|
|
|
|
| ^^^^ required by this bound in `Foo`
|
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: Send + std::marker::Sync> Foo for (T,T) { }
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|