11 lines
166 B
Kotlin
Vendored
11 lines
166 B
Kotlin
Vendored
|
|
|
|
inline fun foo(x: () -> Unit): String {
|
|
x()
|
|
return "OK"
|
|
}
|
|
|
|
fun String.id(s: String = this, vararg xs: Int): String = s
|
|
|
|
fun box(): String = foo("Fail"::id)
|