a492fe7757
#KT-20420 Fixed
10 lines
191 B
Plaintext
Vendored
10 lines
191 B
Plaintext
Vendored
// SET_FALSE: CALL_PARAMETERS_LPAREN_ON_NEXT_LINE
|
|
// SET_TRUE: CALL_PARAMETERS_RPAREN_ON_NEXT_LINE
|
|
fun f() {
|
|
foo(1,
|
|
"a",
|
|
2
|
|
)
|
|
}
|
|
|
|
fun foo(p1: Int, p2: String, p3: Int){} |