mirror of https://gitee.com/openkylin/qemu.git
20 lines
350 B
JSON
20 lines
350 B
JSON
# we require all branches of the union to be covered
|
|
|
|
##
|
|
# @TestEnum:
|
|
##
|
|
{ 'enum': 'TestEnum',
|
|
'data': [ 'value1', 'value2' ] }
|
|
##
|
|
# @TestTypeA:
|
|
##
|
|
{ 'struct': 'TestTypeA',
|
|
'data': { 'string': 'str' } }
|
|
##
|
|
# @TestUnion:
|
|
##
|
|
{ 'union': 'TestUnion',
|
|
'base': { 'type': 'TestEnum' },
|
|
'discriminator': 'type',
|
|
'data': { 'value1': 'TestTypeA' } }
|