[KLIB tool] Update KLIB metadata dump tests

^KT-62340
This commit is contained in:
Dmitriy Dolovov
2024-02-09 15:23:40 +01:00
committed by Space Team
parent f9f97f2050
commit 07767f88e2
170 changed files with 9177 additions and 2207 deletions
@@ -0,0 +1,46 @@
library {
// module name: <annotatedEnumEntry.kt>
library fragment {
// package name: test
// class name: test/Anno
// class name: test/Bnno
// class name: test/Eee
public final annotation class test/Anno : kotlin/Annotation {
public constructor(value: kotlin/String /* = ... */, x: kotlin/Int /* = ... */)
public final val value: kotlin/String
public final get
public final val x: kotlin/Int
public final get
}
public final annotation class test/Bnno : kotlin/Annotation {
public constructor()
}
public final enum class test/Eee : kotlin/Enum<test/Eee> {
private constructor()
@test/Anno
Entry1,
Entry2,
@test/Anno(value = "3")
@test/Bnno
Entry3,
@test/Anno(value = "4", x = 4)
Entry4,
// has Enum.entries
}
}
}