mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
179 B
Kotlin
Vendored
10 lines
179 B
Kotlin
Vendored
fun getInterface(): GenericInterface<String> {
|
|
return GenericInterface { d, i, j, s ->
|
|
"OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return getInterface().foo(0.0, 0, 0, 0)
|
|
}
|