[FIR] Fix incorrect usages of getClassLikeSymbolByClassId with lookup tag

^KT-57839 Fixed
This commit is contained in:
Dmitriy Novozhilov
2023-04-11 11:43:37 +03:00
committed by Space Team
parent b750e1e62c
commit cfa06dbf74
10 changed files with 79 additions and 19 deletions
@@ -0,0 +1,26 @@
FILE: lambdaWithAnonymousObject.kt
public final fun <R> myRun(block: R|() -> R|): R|R| {
^myRun R|<local>/block|.R|SubstitutionOverride<kotlin/Function0.invoke: R|R|>|()
}
public abstract interface Bar : R|kotlin/Any| {
public abstract val action: R|() -> kotlin/Unit|
public get(): R|() -> kotlin/Unit|
}
public final val cardModel: R|Bar| = R|/myRun|<R|<anonymous>|>(<L> = myRun@fun <anonymous>(): R|<anonymous>| <inline=NoInline> {
^ object : R|Bar| {
private constructor(): R|<anonymous>| {
super<R|kotlin/Any|>()
}
public open override val action: R|() -> kotlin/Unit| = myRun@fun <anonymous>(): R|kotlin/Unit| <inline=Unknown> {
^@myRun Unit
}
public get(): R|() -> kotlin/Unit|
}
}
)
public get(): R|Bar|