tests: acpi: pc/q35 whitelist DSDT before \_GPE cleanup
[qemu.git] / tests / qapi-schema / union-base-no-discriminator.json
blob2e7cae9b2281d4149d47d37aed4e61cc321be5ad
1 # we reject unions without discriminator
2 { 'struct': 'TestTypeA',
3   'data': { 'string': 'str' } }
5 { 'struct': 'TestTypeB',
6   'data': { 'integer': 'int' } }
8 { 'struct': 'Base',
9   'data': { 'string': 'str' } }
11 { 'union': 'TestUnion',
12   'base': 'Base',
13   'data': { 'value1': 'TestTypeA',
14             'value2': 'TestTypeB' } }