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

8 lines
177 B
Kotlin
Vendored

// SET_TRUE: ALLOW_TRAILING_COMMA
// REGISTRY: kotlin.formatter.allowTrailingCommaOnCallSite true
fun f() {
foo(<caret>1, "a", 2)
}
fun foo(p1: Int, p2: String, p3: Int){}