qemu-e2k/tests/qapi-schema/alternate-conflict-string.json

8 lines
216 B
JSON
Raw Normal View History

# we reject anonymous unions with multiple string-like branches
{ 'enum': 'Enum',
'data': [ 'hello', 'world' ] }
{ 'union': 'MyUnion',
'discriminator': {},
'data': { 'one': 'str',
'two': 'Enum' } }