summary refs log tree commit diff
path: root/src/test/ui/issues/issue-35677.stderr
blob: 978221e502f80b11d5bb6c7ef7dc1d8fbf0a186e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0599]: no method named `is_subset` found for reference `&std::collections::HashSet<T>` in the current scope
  --> $DIR/issue-35677.rs:4:10
   |
LL |     this.is_subset(other)
   |          ^^^^^^^^^ method not found in `&std::collections::HashSet<T>`
   |
   = note: the method `is_subset` exists but the following trait bounds were not satisfied:
           `T: std::cmp::Eq`
           `T: std::hash::Hash`

error: aborting due to previous error

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