Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddParameterKeepFormatAfter.kt
T
Alexey Sedunov 354a6cbfd9 Change Signature: Keep parameter 'val'/'var' when invoked from Java
#KT-20901 Fixed
 #KT-21159 Fixed
2017-11-30 12:49:24 +03:00

22 lines
294 B
Kotlin
Vendored

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