Files
kotlin-fork/idea/testData/refactoring/introduceParameter/functionMultipleUnusedParameters.kt
T

7 lines
124 B
Kotlin
Vendored

fun foo(a: Int, s: String, b: Int): Int {
return (<selection>a + b</selection>) * 2
}
fun test() {
foo(1, "2", 3)
}