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

11 lines
78 B
Kotlin
Vendored

fun foo() {
foo(
1 + 1
)
}
fun foo(i: Int) {
}
// 2 5 8