Files
kotlin-fork/compiler/testData/codegen/boxInline/lambdaClassClash/noInlineLambdaX2.1.kt
T
2014-07-07 10:51:46 +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"
}