Files
kotlin-fork/compiler/testData/codegen/regressions/kt1714_minimal.kt
T
2012-06-16 19:38:21 +04:00

12 lines
142 B
Kotlin

trait A {
val v: Int
}
class AImpl : A {
override val v: Int = 5
}
public fun box() : String {
(AImpl() : A).v
return "OK"
}