Change Signature: Propagate parameters to chosen callers

#KT-7902 Fixed
This commit is contained in:
Alexey Sedunov
2015-07-03 18:31:03 +03:00
parent 9853934087
commit eb7463ed81
46 changed files with 1334 additions and 102 deletions
@@ -0,0 +1,18 @@
open class C: A() {
}
open class D: A {
constructor(): super()
constructor(b: Boolean)
}
fun test() {
A()
A(false)
B()
B(false)
C()
D()
D(false)
}