Admin message

WARNING! Gitlab maintenance operation scheduled for Thursday, 18 June between 19:00 and 20:00 (CET). During this time window, short service interruptions (less than 5 minutes) may occur. Thank you in advance for your understanding.

Simplify EnumDataType and Instance specification
Currently EnumDataType instances need to be specified with explicit DataTypes, e.g.: ``` Enumerated e1 { e1 v1, e1 v2 } ``` where v1 and v2 are the instances of the EnumDataType. This can be tedious. It should be possible to infer the data types for the instances from the containing EnumDataType so that it is also possible to only list the instances, e.g.: ``` Enumerated e1 { v1, v2 } ```
issue