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