Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20210726a...
[qemu/armbru.git] / tests / qapi-schema / flat-union-no-base.json
blob327877b563b9cc854e4f59609998501b1265c8f1
1 # flat unions require a base
2 { 'struct': 'TestTypeA',
3   'data': { 'string': 'str' } }
4 { 'struct': 'TestTypeB',
5   'data': { 'integer': 'int' } }
6 { 'enum': 'Enum',
7   'data': [ 'value1', 'value2' ] }
8 { 'union': 'TestUnion',
9   'discriminator': 'Enum',
10   'data': { 'value1': 'TestTypeA',
11             'value2': 'TestTypeB' } }