mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
6 lines
135 B
Kotlin
Vendored
6 lines
135 B
Kotlin
Vendored
fun f(b : Long.(Long)->Long) = 1L?.b(2L)
|
|
|
|
fun box(): String {
|
|
val x = f { this + it }
|
|
return if (x == 3L) "OK" else "fail $x"
|
|
} |