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

10 lines
179 B
Kotlin

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