blob: 1bdc245676f8a7de5df7824c2849e4a27edab326 [file]
interface A : Set<String>
class B : A, HashSet<String>()
fun box(): String {
val b = B()
b.add("OK")
return b.iterator().next()
}