// run-rustfix #![allow(dead_code)] use std::collections::HashSet; use std::hash::Hash; fn is_subset(this: &HashSet, other: &HashSet) -> bool { this.is_subset(other) //~^ ERROR the method } fn main() {}