e37cb461f6
#KT-2999 Fixed
10 lines
162 B
Kotlin
10 lines
162 B
Kotlin
object A: protectedStaticFunObject() {
|
|
fun test(): String {
|
|
return protectedStaticFunObject.protectedFun()!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.test()
|
|
}
|