Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
missingEnumReferencedInAnnotationArgument
/
library
/
source.kt
blob: 0964f50897242d2898f638f1bf80394bf6a362d2 [
file
] [
log
] [
blame
]
package
test
enum
class
E
{
ENTRY
}
annotation
class
Anno
(
val e
:
E
)
@Anno
(
E
.
ENTRY
)
open
class
Class