Files
kotlin-fork/js/js.translator/testData/box/inlineStdlib/closureNested.kt
T
2018-09-12 09:49:25 +03:00

25 lines
364 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1283
package foo
// CHECK_CONTAINS_NO_CALLS: test
internal fun test(a: Int, b: Int): Int {
var res = 0
with (a + b) {
val t = this
repeat(t) {
res += t - b
}
}
return res
}
fun box(): String {
assertEquals(10, test(2, 3))
assertEquals(15, test(3, 2))
return "OK"
}