summaryrefslogtreecommitdiff
path: root/tests/qapi-schema/alternate-conflict-dict.json
blob: 3d7881279c733abc4c96737395dd6efc862a319b (plain)
1
2
3
4
5
6
7
8
# alternate branches of object type conflict with each other
{ 'struct': 'One',
  'data': { 'name': 'str' } }
{ 'struct': 'Two',
  'data': { 'value': 'int' } }
{ 'alternate': 'Alt',
  'data': { 'one': 'One',
            'two': 'Two' } }