Files
kotlin-fork/compiler/testData/codegen/box/collections/inheritFromHashtable.kt
T
Georgy Bronnikov 394c660a82 Mute a FIR test
2020-03-04 01:34:17 +03:00

12 lines
207 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FULL_JDK
import java.util.Hashtable
class A : Hashtable<String, String>()
fun box(): String {
val sz = A().size
return "OK"
}