Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/missingEnumReferencedInAnnotationArgument/missingEnumReferencedInAnnotationArgument.txt
T
Alexander Udalov 82574cb570 Do not store ClassDescriptor in EnumValue
Only store the ClassId of the enum class and the Name of the entry, and
resolve the needed descriptor in getType() instead, which now takes the
module instance where that descriptor should be resolved
2018-01-18 12:49:38 +01:00

15 lines
313 B
Plaintext
Vendored

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