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

15 lines
153 B
Kotlin
Vendored

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