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

10 lines
190 B
Kotlin

class Derived(): funNestedStaticClass.Inner() {
fun test(): String {
return funNestedStaticClass.Inner.protectedFun()!!
}
}
fun box(): String {
return Derived().test()
}