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

8 lines
140 B
Kotlin
Vendored

// INTENTION_TEXT: "Put parameters on one line"
// SET_TRUE: ALLOW_TRAILING_COMMA
fun test(
a: Int,
b: Int,<caret>
c: Int,
) {}