summaryrefslogblamecommitdiffstats
path: root/tests/qapi-schema/union-int-branch.json
blob: 567043d9d21bd2ff7cfd92ee8b6fc1cf4c6f728a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
                                          

                                  
                   
                                   
                        





                                     
# we require union branches to be a struct
{ 'enum': 'TestEnum',
  'data': [ 'value1', 'value2' ] }
{ 'struct': 'Base',
  'data': { 'enum1': 'TestEnum' } }
{ 'struct': 'TestTypeB',
  'data': { 'integer': 'int' } }
{ 'union': 'TestUnion',
  'base': 'Base',
  'discriminator': 'enum1',
  'data': { 'value1': 'int',
            'value2': 'TestTypeB' } }