b4898e4043
#KT-36411 Fixed
12 lines
213 B
Plaintext
Vendored
12 lines
213 B
Plaintext
Vendored
// SET_TRUE: ALLOW_TRAILING_COMMA
|
|
// REGISTRY: kotlin.formatter.allowTrailingCommaOnCallSite true
|
|
|
|
fun f() {
|
|
foo(
|
|
1,
|
|
"a",
|
|
2,
|
|
)
|
|
}
|
|
|
|
fun foo(p1: Int, p2: String, p3: Int){} |