import java.util.HashSet trait A : Set class B : A, HashSet() fun box(): String { val b = B() b.add("OK") return b.iterator().next() }