xref: /openbmc/qemu/tests/qapi-schema/union-invalid-base.json (revision 1ce6be24df0a2f634b61b9b882ac6d10af485ad6)
1{ 'type': 'TestTypeA',
2  'data': { 'string': 'str' } }
3
4{ 'type': 'TestTypeB',
5  'data': { 'integer': 'int' } }
6
7{ 'union': 'TestUnion',
8  'base': 'TestBaseWrong',
9  'data': { 'value1': 'TestTypeA',
10            'value2': 'TestTypeB' } }
11