Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / qapi-schema / union-bad-branch.json
1 # we reject normal unions where branches would collide in C
2 { 'struct': 'One',
3   'data': { 'string': 'str' } }
4 { 'struct': 'Two',
5   'data': { 'number': 'int' } }
6 { 'union': 'MyUnion',
7   'data': { 'one': 'One',
8             'ONE': 'Two' } }