Files
kotlin-fork/native/native.tests/testData/klib/dump-metadata/builtinsSerializer/annotatedEnumEntry.fir.txt
T
2024-02-15 15:38:27 +00:00

47 lines
874 B
Plaintext
Vendored

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
}
}
}