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

10 lines
188 B
Kotlin
Vendored

class Derived(): funNestedStaticClass2.A.B() {
fun test(): String {
return funNestedStaticClass2.A.B.protectedFun()!!
}
}
fun box(): String {
return Derived().test()
}