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

13 lines
135 B
Kotlin
Vendored

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