blob: 6e55ad05452f9fdd7b58e1e2240849e23e05d510 [file]
// WITH_STDLIB
// FILE: lib.kt
import kotlin.test.*
inline fun foo2(i2: Int): Int {
return i2 + 3
}
inline fun foo1(i1: Int): Int {
return foo2(i1)
}
// FILE: main.kt
import kotlin.test.*
fun bar(): Int {
return foo1(11)
}
fun box(): String {
assertEquals(14, bar())
return "OK"
}