Files
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