Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/diagnostics/delegationInInterface.fir.txt
T
Steven Schäfer a7ba081d22 FIR: Fix interface delegation ABI
- Unifies the name of the `$$delegate_<n>` field between K1 and K2.
- Make the `$$delegate_<n>` field private
2022-12-02 21:54:18 +00:00

21 lines
526 B
Plaintext
Vendored

FILE: delegationInInterface.kt
public open class A : R|kotlin/Any| {
public constructor(): R|A| {
super<R|kotlin/Any|>()
}
}
public abstract interface B : R|A| {
private final field $$delegate_0: R|A| = <Unresolved name: a>#
public abstract val a: R|A|
public get(): R|A|
}
public final val test: R|A| = R|/A.A|()
public get(): R|A|
public abstract interface C : R|A| {
private final field $$delegate_0: R|A| = R|/test|
}