1# Reject attempts to duplicate QMP members 2# Here, 'name' would have to appear twice on the wire, locally and for base. 3 4## 5# @Base: 6## 7{ 'struct': 'Base', 8 'data': { 'name': 'str' } } 9## 10# @Sub: 11## 12{ 'struct': 'Sub', 13 'base': 'Base', 14 'data': { 'name': 'str' } } 15