Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1714_minimal.kt
T
2015-10-12 11:11:23 +02:00

14 lines
158 B
Kotlin
Vendored

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