rust/src/test/ui/issues/issue-21837.stderr

17 lines
538 B
Plaintext
Raw Normal View History

2018-07-15 16:11:54 -05:00
error[E0277]: the trait bound `T: Bound` is not satisfied
2018-12-25 09:56:47 -06:00
--> $DIR/issue-21837.rs:8:9
2018-07-15 16:11:54 -05:00
|
LL | impl<T> Trait2 for Foo<T> {} //~ ERROR the trait bound `T: Bound` is not satisfied
| ^^^^^^ the trait `Bound` is not implemented for `T`
|
= help: consider adding a `where T: Bound` bound
note: required by `Foo`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-21837.rs:2:1
2018-07-15 16:11:54 -05:00
|
LL | pub struct Foo<T: Bound>(T);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.