Find Usages: Support of secondary constructors and delegation calls
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
class A: J {
|
||||
constructor(i: Int): super() {
|
||||
|
||||
}
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class B: J() {
|
||||
|
||||
}
|
||||
|
||||
fun test() {
|
||||
J()
|
||||
}
|
||||
Reference in New Issue
Block a user