mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-24 00:21:34 +00:00
Enum entry is now resolved into a class with a class object, which inherits from the former class, as in the other parts of the compiler. Create a special class EnumEntrySyntheticClassDescriptor which will be reused in deserialization later
7 lines
64 B
Java
7 lines
64 B
Java
package test;
|
|
|
|
public enum JavaEnum {
|
|
ENTRY,
|
|
ANOTHER;
|
|
}
|