Files
kotlin/compiler/testData/codegen/boxWithJava/reflection/javaPropertyInheritedInKotlin/K.kt
2015-04-02 03:22:12 +03:00

10 lines
154 B
Kotlin

class K : J()
fun box(): String {
val k = K()
val p = K::result
if (p.get(k) != null) return "Fail"
p.set(k, "OK")
return p.get(k)
}