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