]> Git Repo - qemu.git/blob - tests/qapi-schema/struct-base-clash.json
Merge remote-tracking branch 'mst/tags/for_upstream' 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 { 'struct': 'Base',
4   'data': { 'name': 'str' } }
5 { 'struct': 'Sub',
6   'base': 'Base',
7   'data': { 'name': 'str' } }
This page took 0.030272 seconds and 4 git commands to generate.