1 2 3 4 5 6 7 8 9
use iof::show; use std::collections::HashSet; #[test] fn show() { let set: HashSet<i32> = HashSet::from_iter([3, 2, 1]); show!(set); }