rust/tests/ui/builtin-superkinds/builtin-superkinds-typaram-not-send.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
686 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0277]: `T` cannot be sent between threads safely
--> $DIR/builtin-superkinds-typaram-not-send.rs:5:32
2018-08-08 12:28:26 +00:00
|
LL | impl <T: Sync+'static> Foo for T { }
| ^ `T` cannot be sent between threads safely
2018-08-08 12:28:26 +00: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`
help: consider further restricting this bound
|
LL | impl <T: Sync+'static + std::marker::Send> Foo for T { }
| +++++++++++++++++++
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.