290983687d
#KT-8447 Fixed
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)
|
|
}
|