Files
kotlin-fork/compiler/testData/codegen/bytecodeListing/collectionStubs/abstractMapRedefiningGetAny.kt
T

4 lines
101 B
Kotlin
Vendored

abstract class MindMap : MutableMap<Int, String> {
operator fun get(key: Any?): String? = null
}