Files
kotlin-fork/compiler/testData/codegen/box/regressions/kt5395.kt
T
2019-11-19 11:00:09 +03:00

15 lines
207 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
class D {
companion object {
protected val F: String = "OK"
}
inner class E {
fun foo() = F
}
}
fun box(): String {
return D().E().foo()
}