]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qapi-schema/union-clash-branches.json
qapi: Back out doc comments added just to please qapi.py
[mirror_qemu.git] / tests / qapi-schema / union-clash-branches.json
1 # Union branch name collision
2 # Reject a union that would result in a collision in generated C names (this
3 # would try to generate two members 'a_b').
4 { 'union': 'TestUnion',
5 'data': { 'a-b': 'int', 'a_b': 'str' } }