Files
kotlin-fork/compiler/testData/codegen/box/funInterface/kt41670.kt
T
2022-09-07 13:37:38 +00:00

7 lines
100 B
Kotlin
Vendored

fun interface Interface {
fun foo()
val value get() = "OK"
}
fun box() = Interface{}.value