Find Usages: Support of secondary constructors and delegation calls

This commit is contained in:
Alexey Sedunov
2015-03-19 21:08:52 +03:00
parent 312a1db273
commit d19e6337a3
28 changed files with 342 additions and 27 deletions
@@ -0,0 +1,23 @@
open class B {
constructor(): this("") {
}
constructor(s: String) {
}
}
open class A : B {
constructor(a: Int) : super("") {
}
}
class C : B("") {
}
fun test() {
B("")
}