Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1714_minimal.kt
T
2021-08-01 22:23:40 +03:00

14 lines
151 B
Kotlin
Vendored

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