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

10 lines
162 B
Kotlin

object A: protectedStaticFunObject() {
fun test(): String {
return protectedStaticFunObject.protectedFun()!!
}
}
fun box(): String {
return A.test()
}