Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1714_minimal.kt
T
2015-05-12 19:43:17 +02:00

13 lines
147 B
Kotlin
Vendored

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