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

13 lines
135 B
Kotlin
Vendored

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