e37cb461f6
#KT-2999 Fixed
12 lines
198 B
Kotlin
12 lines
198 B
Kotlin
class A {
|
|
class object: protectedStaticFunClassObject() {
|
|
fun test(): String {
|
|
return protectedStaticFunClassObject.protectedFun()!!
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.test()
|
|
}
|