mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 08:31:38 +00:00
10 lines
165 B
Kotlin
Vendored
10 lines
165 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)
|