[IR] update testdata: super and receiver for field accesses
This commit is contained in:
committed by
teamcityserver
parent
029ee6f2e7
commit
a6b408978f
@@ -6,15 +6,15 @@ class Derived : Base {
|
||||
}
|
||||
|
||||
init {
|
||||
#value = 0
|
||||
<this>super.#value = 0
|
||||
}
|
||||
|
||||
fun getValue(): Int {
|
||||
return #value
|
||||
return <this>super.#value
|
||||
}
|
||||
|
||||
fun setValue(value: Int) {
|
||||
#value = value
|
||||
<this>super.#value = value
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user