Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/missingEnumReferencedInAnnotation/MissingEnum.kt.txt
T
Alexander Udalov b69970d621 Rename CompileKotlinAgainstCustomJava test
It's not against Java per se, but rather any binaries
2013-09-06 21:28:49 +04:00

13 lines
207 B
Plaintext

package test
// To regenerate this test:
// 1. Compile this file
// 2. Delete test/E.class
// 3. Pack test/ into jar
enum class E { ENTRY }
annotation class Anno(val e: E)
Anno(E.ENTRY) open class Class