IR KT-46578 add IrProperty#overriddenSymbols

This commit is contained in:
Dmitry Petrov
2021-05-11 16:23:27 +03:00
committed by teamcityserver
parent dc9d5cdf35
commit 53c1de172f
91 changed files with 1165 additions and 22 deletions
@@ -0,0 +1,39 @@
open class Base {
constructor(x: Any) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: Any
field = x
get
}
object Host {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
class Derived1 : Base {
constructor() /* primary */ {
super/*Base*/(x = Host)
/* <init>() */
}
}
class Derived2 : Base {
constructor() /* primary */ {
super/*Base*/(x = Host)
/* <init>() */
}
}
}