blob: ba2d503d7fcf1269659b6d8d47b6f7f8e2a7c0d9 [file] [log] [blame]
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() {}