MAINTAINERS: Add include/hw/xtensa/mx_pic.h to the XTFPGA machine section
[qemu/kevin.git] / tests / qapi-schema / union-branch-invalid-dict.json
blobc7c81c0e00087514863b49a21a98de6453fc639e
1 # Long form of member must have a value member 'type'
2 { 'enum': 'TestEnum',
3   'data': [ 'integer', 's8' ] }
4 { 'union': 'UnionInvalidBranch',
5   'base': { 'type': 'TestEnum' },
6   'discriminator': 'type',
7   'data': { 'integer': { 'if': 'foo'},
8             's8': 'int8' } }