xref: /qemu/tests/qapi-schema/union-invalid-base.json (revision b763adf1a6b271f17f15ea31fae93d03e980d911)
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