Files
kotlin-fork/compiler/testData/codegen/boxInline/noInline/noInline.1.kt
T
2014-07-07 10:51:46 +04:00

10 lines
170 B
Kotlin

fun test1(): Int {
return calc( {(l : Int) -> 2*l}, {(l : Int) -> 4*l})
}
fun box(): String {
if (test1() != 110) return "test1: ${test1()}"
return "OK"
}