Files
kotlin-fork/idea/testData/refactoring/changeSignature/SwapParametersKeepFormatAfter.kt
T
2020-02-04 21:34:53 +07:00

16 lines
188 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
)
}