1 # flat unions require a base
2 # TODO: simple unions should be able to use an enum discriminator
3 { 'struct': 'TestTypeA',
4 'data': { 'string': 'str' } }
5 { 'struct': 'TestTypeB',
6 'data': { 'integer': 'int' } }
8 'data': [ 'value1', 'value2' ] }
9 { 'union': 'TestUnion',
10 'discriminator': 'Enum',
11 'data': { 'value1': 'TestTypeA',
12 'value2': 'TestTypeB' } }