]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-21837.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-21837.stderr
1 error[E0277]: the trait bound `T: Bound` is not satisfied
2   --> $DIR/issue-21837.rs:18:9
3    |
4 LL | impl<T> Trait2 for Foo<T> {} //~ ERROR the trait bound `T: Bound` is not satisfied
5    |         ^^^^^^ the trait `Bound` is not implemented for `T`
6    |
7    = help: consider adding a `where T: Bound` bound
8 note: required by `Foo`
9   --> $DIR/issue-21837.rs:12:1
10    |
11 LL | pub struct Foo<T: Bound>(T);
12    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.