qemu-e2k/tests/qapi-schema/struct-base-clash.json

15 lines
267 B
JSON

# Reject attempts to duplicate QMP members
# Here, 'name' would have to appear twice on the wire, locally and for base.
##
# @Base:
##
{ 'struct': 'Base',
'data': { 'name': 'str' } }
##
# @Sub:
##
{ 'struct': 'Sub',
'base': 'Base',
'data': { 'name': 'str' } }