[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,15 @@
// ISSUE: KT-57839
fun <R> myRun(block: () -> R): R {
return block()
}
interface Bar {
val action: () -> Unit
}
val cardModel = myRun {
object : Bar {
override val action = {}
}
}