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

11 lines
198 B
Kotlin

fun test1(): Int {
val inlineX = Inline()
var p = {(l : Int) -> l};
return inlineX.calc(p, 25)
}
fun box(): String {
if (test1() != 25) return "test1: ${test1()}"
return "OK"
}