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