Change Signature: Support refactoring of primary/secondary constructor by delegation call reference
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
open class A() {
|
||||
constructor(a: Int) : this() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
open class B: A {
|
||||
constructor(a: Int) : <caret>super() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
open class C: A {
|
||||
constructor(a: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
fun test() {
|
||||
A()
|
||||
}
|
||||
Reference in New Issue
Block a user