Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
T
Nikolay Krasko 3d9d6e666d Test several line numbers are generated for one instruction
(cherry picked from commit 1ea9280)
2016-10-05 18:49:38 +03:00

12 lines
120 B
Kotlin
Vendored

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