e37cb461f6
#KT-2999 Fixed
10 lines
174 B
Kotlin
10 lines
174 B
Kotlin
class Derived(): protectedStaticFun() {
|
|
fun test(): String {
|
|
return protectedStaticFun.protectedFun()!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Derived().test()
|
|
}
|