]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-21837.stderr
Require Drop impls to have the same constness on its bounds as the bounds on the...
[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:8:20
3    |
4 LL | impl<T> Trait2 for Foo<T> {}
5    |                    ^^^^^^ the trait `Bound` is not implemented for `T`
6    |
7 note: required by a bound in `Foo`
8   --> $DIR/issue-21837.rs:2:19
9    |
10 LL | pub struct Foo<T: Bound>(T);
11    |                   ^^^^^ required by this bound in `Foo`
12 help: consider restricting type parameter `T`
13    |
14 LL | impl<T: Bound> Trait2 for Foo<T> {}
15    |       +++++++
16
17 error: aborting due to previous error
18
19 For more information about this error, try `rustc --explain E0277`.