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

7 lines
113 B
Kotlin
Vendored

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