Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/regressions/kt4142.kt
T
2015-03-24 19:14:18 +01:00

17 lines
159 B
Kotlin

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