7 lines
100 B
Kotlin
Vendored
7 lines
100 B
Kotlin
Vendored
fun interface Interface {
|
|
fun foo()
|
|
|
|
val value get() = "OK"
|
|
}
|
|
|
|
fun box() = Interface{}.value |