Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddParameterKeepFormatAfter.kt
T
2020-01-17 21:02:54 +07:00

26 lines
330 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
)
}