Files
kotlin-fork/idea/testData/intentions/joinArgumentList/hasLineBreakBeforeFirstArg.kt
T

6 lines
116 B
Kotlin
Vendored

fun foo(a: Int = 1, b: Int = 1, c: Int = 1) {}
fun bar(a: Int, b: Int, c: Int) {
foo(<caret>
a, b, c)
}