Files
kotlin-fork/idea/testData/refactoring/introduceParameter/superCallArgument.kt
T
Alexey Sedunov 790b615fa1 Introduce Parameter: Fix parameter name validation
Respect existing parameter names and fix some exceptions

 #KT-19439 Fixed
 #KT-20402 Fixed
 #KT-20403 Fixed
2017-10-16 16:04:39 +03:00

9 lines
146 B
Kotlin
Vendored

class A : B({ "${<selection>C.c</selection>}" })
class C() {
companion object {
val c = 23
}
}
open class B(param: () -> String)