Files
kotlin/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
2014-12-23 14:40:26 +03:00

13 lines
111 B
Kotlin

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