Files
kotlin-fork/idea/testData/quickfix/changeSignature/removeFunctionFirstParameter.kt
T

9 lines
145 B
Kotlin
Vendored

// "Remove parameter 'x'" "true"
// DISABLE-ERRORS
fun foo(x: Int, y: Int) {
foo(<caret>);
foo(1);
foo(1, 2);
foo(2, 3, sdsd);
}