# here's my sample: type ObjKind = enum Number type NumKind = enum nkFloat, nkInt type Obj = object case kind: ObjKind of Number: case numKind: NumKind = of nkFloat: valFloat: float of nkInt: valInt: int