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

20 lines
224 B
Kotlin
Vendored

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