2018-07-15 21:11:54 +00:00
|
|
|
error[E0277]: the trait bound `T: Bound` is not satisfied
|
2020-07-25 06:05:19 +00:00
|
|
|
--> $DIR/issue-21837.rs:8:20
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | impl<T> Trait2 for Foo<T> {}
|
2020-07-25 06:05:19 +00:00
|
|
|
| ^^^^^^ the trait `Bound` is not implemented for `T`
|
2019-12-26 12:43:33 +00:00
|
|
|
|
|
2021-07-31 16:26:55 +00:00
|
|
|
note: required by a bound in `Foo`
|
|
|
|
--> $DIR/issue-21837.rs:2:19
|
|
|
|
|
|
|
|
|
LL | pub struct Foo<T: Bound>(T);
|
|
|
|
| ^^^^^ required by this bound in `Foo`
|
2020-03-14 02:28:14 +00:00
|
|
|
help: consider restricting type parameter `T`
|
2019-12-26 12:43:33 +00:00
|
|
|
|
|
2020-03-14 02:28:14 +00:00
|
|
|
LL | impl<T: Bound> Trait2 for Foo<T> {}
|
2021-06-22 02:07:19 +00:00
|
|
|
| +++++++
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|