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

13 lines
135 B
Kotlin
Vendored

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