1# Union with empty base and therefore without discriminator
2
3{ 'struct': 'Empty', 'data': { } }
4
5{ 'union': 'TestUnion',
6  'base': 'Empty',
7  'discriminator': 'type',
8  'data': { 'value1': 'int',
9            'value2': 'str' } }
10