Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/missingEnumReferencedInAnnotationArgument/missingEnumReferencedInAnnotationArgument.txt
T
2015-10-19 20:45:01 +03:00

15 lines
361 B
Plaintext
Vendored

package test
public final annotation class Anno : kotlin.Annotation {
public constructor Anno(/*0*/ e: [ERROR : test.E])
public final val e: [ERROR : test.E]
}
@test.Anno(e = Unresolved enum entry: test/E.ENTRY) public open class Class {
public constructor Class()
}
public final class Subclass : test.Class {
public constructor Subclass()
}