summaryrefslogtreecommitdiffstats
path: root/src/test/ui/missing-trait-bounds/issue-35677.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/missing-trait-bounds/issue-35677.stderr')
-rw-r--r--src/test/ui/missing-trait-bounds/issue-35677.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/missing-trait-bounds/issue-35677.stderr b/src/test/ui/missing-trait-bounds/issue-35677.stderr
new file mode 100644
index 000000000..a2201b946
--- /dev/null
+++ b/src/test/ui/missing-trait-bounds/issue-35677.stderr
@@ -0,0 +1,17 @@
+error[E0599]: the method `is_subset` exists for reference `&HashSet<T>`, but its trait bounds were not satisfied
+ --> $DIR/issue-35677.rs:7:10
+ |
+LL | this.is_subset(other)
+ | ^^^^^^^^^ method cannot be called on `&HashSet<T>` due to unsatisfied trait bounds
+ |
+ = note: the following trait bounds were not satisfied:
+ `T: Eq`
+ `T: Hash`
+help: consider restricting the type parameters to satisfy the trait bounds
+ |
+LL | fn is_subset<T>(this: &HashSet<T>, other: &HashSet<T>) -> bool where T: Eq, T: Hash {
+ | ++++++++++++++++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.