# Hi! I have a type that references a tuple of types like this: type Field_Ref = (Class_Index, Name_And_Type_Index) # now I would like to get the first element of the Field_Ref type: # I guess it should be just: # Field_Ref[0] like in a "normal value-tuple", but the compiler complains: "Error: # no generic parameters allowed for Field_Ref" # Is that possible? Using types that reference tuples of types? And if yes, how # can i get the tuple elements?