Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt5395.kt
T
2015-03-24 20:59:56 +01:00

14 lines
177 B
Kotlin
Vendored

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