configure: Prepend pixman and ftd flags to overrule system-provided ones
[qemu.git] / tests / qapi-schema / union-invalid-base.json
blob1fa4930010adee34393eb66b877ee5b53071e6a0
1 { 'type': 'TestTypeA',
2   'data': { 'string': 'str' } }
4 { 'type': 'TestTypeB',
5   'data': { 'integer': 'int' } }
7 { 'union': 'TestUnion',
8   'base': 'TestBaseWrong',
9   'data': { 'value1': 'TestTypeA',
10             'value2': 'TestTypeB' } }