diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/ui/where-clauses/where-clauses-unsatisfied.stderr | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/ui/where-clauses/where-clauses-unsatisfied.stderr b/src/test/ui/where-clauses/where-clauses-unsatisfied.stderr new file mode 100644 index 000000000..b1805a452 --- /dev/null +++ b/src/test/ui/where-clauses/where-clauses-unsatisfied.stderr @@ -0,0 +1,19 @@ +error[E0277]: the trait bound `Struct: Eq` is not satisfied + --> $DIR/where-clauses-unsatisfied.rs:6:10 + | +LL | drop(equal(&Struct, &Struct)) + | ^^^^^ the trait `Eq` is not implemented for `Struct` + | +note: required by a bound in `equal` + --> $DIR/where-clauses-unsatisfied.rs:1:45 + | +LL | fn equal<T>(a: &T, b: &T) -> bool where T : Eq { a == b } + | ^^ required by this bound in `equal` +help: consider annotating `Struct` with `#[derive(Eq)]` + | +LL | #[derive(Eq)] + | + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0277`. |