Files
kotlin-fork/compiler/testData/codegen/boxInline/noInlineLambdaX2/1.kt
T
2014-03-03 15:43:35 +04:00

10 lines
160 B
Kotlin

fun test1(): Int {
return 1.inlineMethod()
}
fun box(): String {
val result = test1()
if (result != 2) return "test1: ${result}"
return "OK"
}