Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddParameterKeepFormatBefore.kt
T
Alexey Sedunov 6ff955b66c Change Signature: Implement improved call processing algorithm
#KT-8953 Fixed
 #KT-9525 Fixed
2015-11-10 16:47:48 +03:00

16 lines
176 B
Kotlin
Vendored

fun <caret>foo(a: Int, b: Int, c: Int) {
}
fun test() {
foo(1,
2,
3)
foo(1, 2,
3)
foo(
1,
2,
3
)
}