summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/struct-base-clash-deep.json
blob: 552fe94317a85463ea05a8d7d65d384b9811d1aa (plain)
1
2
3
4
5
6
7
8
9
# we check for no duplicate keys with indirect base
{ 'struct': 'Base',
  'data': { 'name': 'str' } }
{ 'struct': 'Mid',
  'base': 'Base',
  'data': { 'value': 'int' } }
{ 'struct': 'Sub',
  'base': 'Mid',
  'data': { '*name': 'str' } }