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

10 lines
172 B
Kotlin
Vendored

class A: funCallInConstructor(funCallInConstructor.protectedFun()) {
fun test(): String {
return protectedProperty!!
}
}
fun box(): String {
return A().test()
}