Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddParameterKeepFormatAfter.kt
T
2020-02-04 21:34:53 +07: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
)
}