Find Usages: Support primary constructors

#KT-7881 Fixed
This commit is contained in:
Alexey Sedunov
2015-06-08 18:42:13 +03:00
parent 1ea2c24562
commit e2d758463f
18 changed files with 188 additions and 9 deletions
@@ -0,0 +1,14 @@
open class A (n: Int) {
constructor(): this(1)
}
class B: A {
constructor(n: Int): super(n)
}
class C(): A(1)
fun test() {
A()
A(1)
}