Files
kotlin-fork/idea/testData/intentions/joinArgumentList/onRightParenthesis.kt
T
2020-10-23 15:46:49 +09:00

12 lines
173 B
Kotlin
Vendored

fun foo() {
f(
1,
2,
g(3, 4, 5),
3
)<caret>
}
fun f(a: Int, b: Int, c: Int, d: Int): Int = 0
fun g(a: Int, b: Int, c: Int): Int = 0