Files
kotlin-fork/compiler/testData/codegen/visibility/withJava/protected_static/protectedStaticFunNestedStaticClass2.kt
T
Natalia.Ukhorskaya e37cb461f6 Support visibility for protected static members
#KT-2999 Fixed
2013-01-24 18:43:37 +04:00

10 lines
218 B
Kotlin

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