Files
kotlin-fork/idea/testData/intentions/joinArgumentList/hasLineBreaksWithTrailingComma.kt
T
2020-03-03 21:53:11 +07:00

12 lines
250 B
Kotlin
Vendored

// INTENTION_TEXT: "Put arguments on one line"
// REGISTRY: kotlin.formatter.allowTrailingCommaOnCallSite true
fun foo(a: Int = 1, b: Int = 1, c: Int = 1) {}
fun bar(a: Int, b: Int, c: Int) {
foo(
a,
b,<caret>
c,
)
}