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

13 lines
171 B
Kotlin

fun test1(): Int {
var s = 0;
2.times2 {
s++
}
return s;
}
fun box(): String {
if (test1() != 2) return "test1: ${test1()}"
return "OK"
}