Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
T
pyos e98bdc6f8e JVM: preserve call site markers when inlining lambdas
and default functions into their own stubs.

Fixes #KT-35006
2020-03-31 16:06:57 +02:00

12 lines
144 B
Kotlin
Vendored

fun test() {
foo()
bar()
}
fun foo(i: Int = 1) {
}
inline fun bar(i: Int = 1) {
}
// IGNORE_BACKEND: JVM_IR
// 2 3 13 14 4 7 6 10 9 10