Files
kotlin-fork/compiler/testData/ir/irText/declarations/internalStdlibOverride.kt.txt
T
2024-02-16 10:19:38 +00:00

18 lines
312 B
Kotlin
Vendored

class MyMap : AbstractMap<Int, Int> {
override val entries: Set<Entry<Int, Int>>
field = emptySet<Entry<Int, Int>>()
override get
constructor() /* primary */ {
super/*AbstractMap*/<Int, Int>()
/* <init>() */
}
fun containsEntry(entry: Entry<*, *>?): Boolean {
return false
}
}