aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/alternate-conflict-dict.json
blob: d566cca8169c265ab12ceb710791c59172d72bcf (plain)
1
2
3
4
5
6
7
8
# we reject alternates with multiple object branches
{ 'struct': 'One',
  'data': { 'name': 'str' } }
{ 'struct': 'Two',
  'data': { 'value': 'int' } }
{ 'alternate': 'Alt',
  'data': { 'one': 'One',
            'two': 'Two' } }