[FIR] Fix incorrect usages of getClassLikeSymbolByClassId with lookup tag
^KT-57839 Fixed
This commit is contained in:
committed by
Space Team
parent
b750e1e62c
commit
cfa06dbf74
+15
@@ -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 = {}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user