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

7 lines
134 B
Kotlin

public inline fun Int.times2(body : () -> Unit) {
var count = this;
while (count > 0) {
body()
count--
}
}