blob: 20d02a90315d0a356d99c89ad93aaf9f08227450 [file] [log] [blame]
error[E0277]: the trait bound `T: Bound` is not satisfied
--> $DIR/issue-21837.rs:8:9
|
LL | pub struct Foo<T: Bound>(T);
| ---------------------------- required by `Foo`
...
LL | impl<T> Trait2 for Foo<T> {}
| ^^^^^^ the trait `Bound` is not implemented for `T`
|
= help: consider adding a `where T: Bound` bound
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.