Files
kotlin-fork/js/js.translator/testData/inlineStdlib/cases/localNamesClash.kt
T
2015-03-06 21:36:19 +03:00

19 lines
311 B
Kotlin

package foo
// CHECK_CONTAINS_NO_CALLS: test
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"
}