Files
kotlin-fork/compiler/testData/codegen/boxInline/simple/extensionLambda.1.kt
T
Michael Bogdanov 7a1625fc9e Support extension lambda inlining
#KT-7962 Fixed
2015-06-08 16:07:38 +03:00

9 lines
128 B
Kotlin
Vendored

import test.*
fun box(): String {
val p = "".test(50.0) {
it
}
return if (p == 50.0) "OK" else "fail $p"
}