Files
kotlin-fork/compiler/testData/lineNumber/custom/functionCallWithDefault.kt
T
Jiaxiang Chen 2c5ebf3ab2 Fix compareCustom function in IrLineNumberTest class, to exclude comment
lines that are not related for line number verification.

Unmute a test case should have been unmuted but shadowed by this bug.
2019-05-08 12:53:45 -07:00

12 lines
119 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