vfio: remove a duplicated word in comments
[qemu/ar7.git] / tests / qapi-schema / struct-base-clash.json
bloba8539958b59bf857c8925712bdc68ebfc8180250
1 # Reject attempts to duplicate QMP members
2 # Here, 'name' would have to appear twice on the wire, locally and for base.
4 ##
5 # @Base:
6 ##
7 { 'struct': 'Base',
8   'data': { 'name': 'str' } }
9 ##
10 # @Sub:
12 { 'struct': 'Sub',
13   'base': 'Base',
14   'data': { 'name': 'str' } }