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

13 lines
197 B
Kotlin
Vendored

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