Files
kotlin/compiler/testData/codegen/boxInline/lambdaClassClash/noInlineLambdaX2.1.kt
2015-04-13 16:11:21 +03:00

12 lines
201 B
Kotlin
Vendored

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