2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: `T` cannot be sent between threads safely
|
2023-01-12 20:15:00 +00:00
|
|
|
--> $DIR/builtin-superkinds-typaram-not-send.rs:5:32
|
2018-08-08 14:28:26 +02: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 14:28:26 +02:00
|
|
|
|
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/builtin-superkinds-typaram-not-send.rs:3:13
|
|
|
|
|
|
|
|
|
LL | trait Foo : Send { }
|
|
|
|
| ^^^^ required by this bound in `Foo`
|
2020-03-13 19:28:14 -07:00
|
|
|
help: consider further restricting this bound
|
2019-12-26 13:43:33 +01:00
|
|
|
|
|
2021-03-30 17:56:39 +08:00
|
|
|
LL | impl <T: Sync+'static + std::marker::Send> Foo for T { }
|
2021-06-21 19:07:19 -07:00
|
|
|
| +++++++++++++++++++
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|