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

10 lines
172 B
Kotlin

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