Files
kotlin-fork/compiler/testData/codegen/boxWithJava/protectedStatic/simpleProperty.kt
T
Alexander Udalov 2904d1745b Remove generated black box java codegen test
Move all testData to boxWithJava/
2013-01-28 18:20:41 +04:00

11 lines
170 B
Kotlin

class Derived(): simpleProperty() {
fun test(): String {
return simpleProperty.protectedProperty!!
}
}
fun box(): String {
return Derived().test()
}