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