Files
kotlin/compiler/testData/codegen/boxAgainstJava/visibility/protectedStatic/simpleProperty.kt
2014-06-26 20:57:40 +04:00

11 lines
170 B
Kotlin

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