rust/src/test/ui/where-clauses/where-clauses-unsatisfied.stderr

16 lines
541 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: the trait bound `Struct: std::cmp::Eq` is not satisfied
--> $DIR/where-clauses-unsatisfied.rs:16:10
|
LL | drop(equal(&Struct, &Struct))
| ^^^^^ the trait `std::cmp::Eq` is not implemented for `Struct`
|
note: required by `equal`
--> $DIR/where-clauses-unsatisfied.rs:11:1
|
LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b }
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.