Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/Jet121.kt
T
2015-10-14 20:39:35 +03:00

15 lines
201 B
Kotlin
Vendored

package jet121
fun box() : String {
val answer = apply("OK") {
get(0)
length
}
return if (answer == 2) "OK" else "FAIL"
}
fun apply(arg:String, f : String.() -> Int) : Int {
return arg.f()
}