b4898e4043
#KT-36411 Fixed
8 lines
212 B
Plaintext
Vendored
8 lines
212 B
Plaintext
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, c)
|
|
} |