# a union base type must be a struct | |
{ 'struct': 'TestTypeA', | |
'data': { 'string': 'str' } } | |
{ 'struct': 'TestTypeB', | |
'data': { 'integer': 'int' } } | |
{ 'union': 'TestUnion', | |
'base': 'int', | |
'discriminator': 'int', | |
'data': { 'value1': 'TestTypeA', | |
'value2': 'TestTypeB' } } |