Files
kotlin-fork/idea/testData/quickfix/changeSignature/removeUnusedConstructorParameterWithUsage.kt
T
Mikhail Glukhikh ee3f89df87 Remove unused function parameter: delete empty constructor accurately
So #KT-22221 Fixed
Fixes also some quick-fix tests
2018-01-19 16:16:15 +03:00

7 lines
96 B
Kotlin
Vendored

// "Remove parameter 'x'" "true"
fun foo() {
X("")
}
class X constructor(<caret>x: String)