]> Git Repo - qemu.git/blob - tests/qapi-schema/struct-base-clash.json
Merge remote-tracking branch 'remotes/xtensa/tags/20170124-xtensa' into staging
[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' } }
This page took 0.024906 seconds and 4 git commands to generate.