[FIR] Fix access to fields from super class
^KT-49654 Fixed
This commit is contained in:
committed by
TeamCityServer
parent
e7c9d76163
commit
2aa027639c
+14
@@ -0,0 +1,14 @@
|
||||
FILE: main.kt
|
||||
public abstract interface MyBase : R|Base| {
|
||||
}
|
||||
public abstract class Implementation : R|Derived|, R|MyBase| {
|
||||
public constructor(): R|Implementation| {
|
||||
super<R|Derived|>()
|
||||
}
|
||||
|
||||
public final val parentNode: R|kotlin/String?|
|
||||
public get(): R|kotlin/String?| {
|
||||
^ this@R|/Implementation|.super<R|Derived|>.R|/Derived.parent|
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user