Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
T

13 lines
119 B
Kotlin
Vendored

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