summary refs log tree commit diff
path: root/src/test/ui/specialization/defaultimpl/specialization-wfcheck.stderr
blob: 5275b7b1ddfa57e11fa37710d48c8ffc448a76b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0277]: the trait bound `U: std::cmp::Eq` is not satisfied
  --> $DIR/specialization-wfcheck.rs:7:17
   |
LL | default impl<U> Foo<'static, U> for () {}
   |              -  ^^^^^^^^^^^^^^^ the trait `std::cmp::Eq` is not implemented for `U`
   |              |
   |              help: consider restricting this bound: `U: std::cmp::Eq`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0277`.