e37cb461f6
#KT-2999 Fixed
10 lines
177 B
Kotlin
10 lines
177 B
Kotlin
class Derived(): protectedStaticClass() {
|
|
fun test(): String {
|
|
return protectedStaticClass.Inner().foo()!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Derived().test()
|
|
}
|