1use break_hash_example::MyType; 2use std::collections::HashSet; 3 4pub fn make_set() -> HashSet<MyType> { 5 let mut set = HashSet::new(); 6 set.insert(MyType(42)); 7 set 8}