Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/withDefaultProperty.kt
T
2016-11-11 16:26:31 +03:00

8 lines
90 B
Kotlin
Vendored

interface I {
val foo: String
get() = "OK"
}
class A : I
fun box() = A().foo