Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
T
2016-04-20 17:07:09 +03:00

13 lines
120 B
Kotlin
Vendored

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