]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qapi-schema/struct-base-clash.json
Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging
[mirror_qemu.git] / tests / qapi-schema / struct-base-clash.json
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' } }