Files
kotlin/compiler/testData/codegen/boxInline/lambdaClassClash/noInlineLambdaX2.1.kt
Denis Zharkov 46f22b5422 Test fixed
2014-11-13 20:56:08 +03:00

11 lines
174 B
Kotlin

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