Files
kotlin-fork/compiler/testData/codegen/boxInline/smap/interleavedFiles.kt
T
2021-02-02 17:53:53 +03:00

22 lines
258 B
Kotlin
Vendored

// FILE: 1.kt
package test
inline fun f() {}
// FILE: 2.kt
import test.*
inline fun g() {}
inline fun h() {
f() // line N+1 -> 1.kt:4
g() // line N+2 -> 2.kt:4
f() // line N+3 -> 1.kt:4 again
}
fun box(): String {
h()
return "OK"
}