JS: move inline test to box tests
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
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"
|
||||
}
|
||||
Reference in New Issue
Block a user