Files
kotlin-fork/js/js.translator/testData/box/inheritance/interfaces/withDefaultProperty.kt
T
2018-09-12 09:49:25 +03:00

9 lines
124 B
Kotlin
Vendored

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