e37cb461f6
#KT-2999 Fixed
11 lines
188 B
Kotlin
11 lines
188 B
Kotlin
class Derived(): protectedStaticProperty() {
|
|
fun test(): String {
|
|
return protectedStaticProperty.protectedProperty!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Derived().test()
|
|
}
|
|
|