Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt4142.kt
T
2015-05-12 19:43:17 +02:00

17 lines
163 B
Kotlin
Vendored

open class B {
val name: String
get() = "OK"
}
interface A {
val name: String
}
class C : B(), A {
}
fun box(): String {
return C().name
}