qemu-e2k/tests/qapi-schema/union-invalid-base.json

11 lines
237 B
JSON

{ 'type': 'TestTypeA',
'data': { 'string': 'str' } }
{ 'type': 'TestTypeB',
'data': { 'integer': 'int' } }
{ 'union': 'TestUnion',
'base': 'TestBaseWrong',
'data': { 'value1': 'TestTypeA',
'value2': 'TestTypeB' } }