Files
kotlin-fork/js/js.translator/testData/box/inlineMultiModule/calledByFqName.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

22 lines
373 B
Kotlin
Vendored

// EXPECTED_REACHABLE_NODES: 1119
// MODULE: lib
// FILE: lib.kt
package utils
inline
public fun sum(x: Int, y: Int): Int =
x + y
// MODULE: main(lib)
// FILE: main.kt
// CHECK_CONTAINS_NO_CALLS: test
internal fun test(x: Int, y: Int): Int = utils.sum(x, y)
fun box(): String {
assertEquals(3, test(1, 2))
assertEquals(5, test(2, 3))
return "OK"
}