xref: /openbmc/qemu/tests/qapi-schema/alternate-conflict-string.json (revision 7609ffb9191e3fc473203f4bd58b934161eab358)
1# we reject alternates with multiple string-like branches
2{ 'enum': 'Enum',
3  'data': [ 'hello', 'world' ] }
4{ 'alternate': 'Alt',
5  'data': { 'one': 'str',
6            'two': 'Enum' } }
7