Files
kotlin/compiler/testData/codegen/boxInline/defaultValues/defaultParamRemapping.1.kt
2015-06-08 16:07:39 +03:00

9 lines
134 B
Kotlin
Vendored

import test.*
fun box(): String {
val z = "OK".b { a, b ->
a + b
}
return if (z == "s1OK") "OK" else "fail $z"
}