]> git.proxmox.com Git - mirror_qemu.git/blame - tests/qapi-schema/struct-base-clash.json
qapi: Back out doc comments added just to please qapi.py
[mirror_qemu.git] / tests / qapi-schema / struct-base-clash.json
CommitLineData
d220fbcd
EB
1# Reject attempts to duplicate QMP members
2# Here, 'name' would have to appear twice on the wire, locally and for base.
ff55d72e
EB
3{ 'struct': 'Base',
4 'data': { 'name': 'str' } }
5{ 'struct': 'Sub',
6 'base': 'Base',
7 'data': { 'name': 'str' } }