[KAPT+IR] Use ErrorType for unresolved delegate class.

^KT-57946
This commit is contained in:
Mads Ager
2023-04-14 08:31:24 +02:00
committed by Alexander Udalov
parent 1801277a0c
commit 699ad87be2
4 changed files with 83 additions and 2 deletions
@@ -33,6 +33,37 @@ public class C {
////////////////////
@kotlin.Metadata()
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE"})
public final class D implements I {
public D() {
super();
}
}
////////////////////
@kotlin.Metadata()
@kotlin.Suppress(names = {"UNRESOLVED_REFERENCE", "DELEGATION_NOT_TO_INTERFACE"})
public final class E implements NonExisting {
public E() {
super();
}
}
////////////////////
@kotlin.Metadata()
public abstract interface I {
}
////////////////////
@kotlin.Metadata()
public final class UnresolvedDelegateExpressionKt {