blob: 9e19b9a3b11c43a7a64ef71b5f5fe6859b4dc704 [file] [log] [blame]
error[E0277]: the trait bound `Struct: Eq` is not satisfied
--> $DIR/where-clauses-unsatisfied.rs:6:10
|
LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
| -- required by this bound in `equal`
...
LL | drop(equal(&Struct, &Struct))
| ^^^^^ the trait `Eq` is not implemented for `Struct`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.