]> git.lizzy.rs Git - rust.git/blob - src/test/ui/specialization/defaultimpl/specialization-wfcheck.stderr
f499c1f5698595e1de2a708386d8d5605265e67a
[rust.git] / src / test / ui / specialization / defaultimpl / specialization-wfcheck.stderr
1 error[E0277]: the trait bound `U: std::cmp::Eq` is not satisfied
2   --> $DIR/specialization-wfcheck.rs:7:17
3    |
4 LL | trait Foo<'a, T: Eq + 'a> { }
5    |                  -- required by this bound in `Foo`
6 LL | 
7 LL | default impl<U> Foo<'static, U> for () {}
8    |                 ^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `U`
9    |
10 help: consider restricting type parameter `U`
11    |
12 LL | default impl<U: std::cmp::Eq> Foo<'static, U> for () {}
13    |               ^^^^^^^^^^^^^^
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0277`.