Files
kotlin-fork/compiler/fir/resolve/testData/loadCompiledKotlin/annotations/EnumArgumentWithCustomToString.txt
T
Simon Ogorodnik 2995e9fcac FIR deserializer optimization: avoid calling findKotlinClass twice
This commit influences enum entries deserialization.
In particular, now we don't deserialize enum entry members,
but deserialize its supertype correctly (see test data changes).
2019-06-19 23:04:41 +03:00

31 lines
802 B
Plaintext
Vendored

public final enum class E : R|kotlin/Enum<test/E>| {
private constructor(): R|test/E|
public? final enum entry CAKE : R|test/E| {
}
}
public final annotation class EnumAnno : R|kotlin/Annotation| {
public final val value: R|test/E|
public get(): R|test/E|
public constructor(value: R|test/E|): R|test/EnumAnno|
}
public final class EnumArgumentWithCustomToString : R|kotlin/Any| {
public final fun annotated(): R|kotlin/Unit|
public constructor(): R|test/EnumArgumentWithCustomToString|
}
public final annotation class EnumArrayAnno : R|kotlin/Annotation| {
public final val value: R|kotlin/Array<out test/E>|
public get(): R|kotlin/Array<out test/E>|
public constructor(vararg value: R|kotlin/Array<out test/E>|): R|test/EnumArrayAnno|
}