vl: Print -device help at most once
[qemu.git] / tests / qapi-schema / struct-base-clash-deep.json
blob552fe94317a85463ea05a8d7d65d384b9811d1aa
1 # we check for no duplicate keys with indirect base
2 { 'struct': 'Base',
3   'data': { 'name': 'str' } }
4 { 'struct': 'Mid',
5   'base': 'Base',
6   'data': { 'value': 'int' } }
7 { 'struct': 'Sub',
8   'base': 'Mid',
9   'data': { '*name': 'str' } }