Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/tests/qapi-schema/union-invalid-base.json
2023-03-06 14:48:14 +01:00

13 lines
294 B
JSON

# a union base type must be a struct
{ 'struct': 'TestTypeA',
'data': { 'string': 'str' } }
{ 'struct': 'TestTypeB',
'data': { 'integer': 'int' } }
{ 'union': 'TestUnion',
'base': 'int',
'discriminator': 'int',
'data': { 'value1': 'TestTypeA',
'value2': 'TestTypeB' } }