Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
49b2ac1b100c5042a0e98582713938062efa6a31
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
smap
/
interleavedFiles.kt
blob: 179dbcc4995b5903c8019934593407bc873fc3a6 [
file
] [
log
] [
blame
]
// 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"
}