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