These changes are the raw update to qemu-2.6.
[kvmfornfv.git] / qemu / 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' } }