[Fir2IR] Set correct module descriptors for builtins

^KT-64420
This commit is contained in:
Pavel Kunyavskiy
2024-01-03 11:09:20 +01:00
committed by Space Team
parent d665eb3575
commit 4080776fe3
17 changed files with 428 additions and 38 deletions
@@ -0,0 +1,16 @@
class MyMap : AbstractMap<Int, Int> {
constructor() /* primary */ {
super/*AbstractMap*/<Int, Int>()
/* <init>() */
}
override val entries: Set<Entry<Int, Int>>
field = emptySet<Entry<Int, Int>>()
override get
fun containsEntry(entry: Entry<*, *>?): Boolean {
return false
}
}