Files
kotlin-fork/js/js.translator/testData/box/expression/function/implicitItParameter.kt
T
2018-09-12 09:49:25 +03:00

13 lines
279 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1284
package foo
fun test(f: (Int) -> Boolean, p: Int) = f(p)
fun box(): String {
if (!test({ it + 1 == 2 }, 1)) return "fail1"
if (!test({ it > 1 }, 3)) return "fail2"
return if (test({ ((it < 1) == false) }, 1)) "OK" else "fail3"
}