blob: 996f39bfb665c8ff43c2d2addf9c592df540f230 [file] [log] [blame]
error[E0277]: `T` cannot be sent between threads safely
--> $DIR/builtin-superkinds-typaram-not-send.rs:5:24
|
LL | impl <T: Sync+'static> Foo for T { }
| ^^^ `T` cannot be sent between threads safely
|
= help: the trait `std::marker::Send` is not implemented for `T`
help: consider further restricting this bound with `+ std::marker::Send`
--> $DIR/builtin-superkinds-typaram-not-send.rs:5:10
|
LL | impl <T: Sync+'static> Foo for T { }
| ^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.