Files
kotlin-fork/compiler/testData/codegen/boxInline/special/iinc.1.kt
T
2014-07-07 10:51:46 +04:00

13 lines
171 B
Kotlin
Vendored

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