Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
serialization
/
builtinsSerializer
/
annotatedEnumEntry.kt
blob: 68698caec1315e455ac768840d8100e7dee273c9 [
file
] [
log
] [
blame
]
package
test
annotation
class
Anno
(
val value
:
String
=
"0"
,
val x
:
Int
=
0
)
annotation
class
Bnno
enum
class
Eee
{
@Anno
()
Entry1
,
Entry2
,
@Anno
(
"3"
)
@Bnno
Entry3
,
@Anno
(
"4"
,
4
)
Entry4
,
}