mirror of https://github.com/xqemu/xqemu.git
11 lines
291 B
JSON
11 lines
291 B
JSON
![]() |
# Working example of anonymous union
|
||
|
{ 'type': 'Data',
|
||
|
'data': { '*number': 'int', '*name': 'str' } }
|
||
|
{ 'enum': 'Enum',
|
||
|
'data': [ 'hello', 'world' ] }
|
||
|
{ 'union': 'MyUnion',
|
||
|
'discriminator': {},
|
||
|
'data': { 'value': 'int',
|
||
|
'string': 'Enum',
|
||
|
'struct': 'Data' } }
|