Files
kotlin/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
2015-03-16 18:52:01 +03:00

13 lines
116 B
Kotlin

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