1 2 3 4 5 6 7 8
use std::collections::HashSet; fn is_subset<T>(this: &HashSet<T>, other: &HashSet<T>) -> bool { this.is_subset(other) //~^ ERROR no method named } fn main() {}