Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/Jet121.kt
T
2015-03-18 16:06:44 +03:00

15 lines
203 B
Kotlin

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()
}