Files
kotlin-fork/js/js.translator/testData/box/inlineStdlib/localNamesClash.kt
T
Alexey Andreev 3b3fd0fa0d JS: fix DCE limits in test data to fit new kotlin.js size
The size has increased due to new implementation of KClass
2017-10-06 18:16:51 +03:00

20 lines
354 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1115
package foo
// CHECK_CONTAINS_NO_CALLS: test
internal fun test(x: Int, y: Int): Int =
with (x + x) {
val xx = this
with (y + y) {
xx + this
}
}
fun box(): String {
assertEquals(10, test(2, 3))
assertEquals(18, test(4, 5))
return "OK"
}