// IGNORE_BACKEND_FIR: JVM_IR // KJS_WITH_FULL_RUNTIME // IGNORE_BACKEND: NATIVE interface A : Set class B : A, HashSet() fun box(): String { val b = B() b.add("OK") return b.iterator().next() }