xref: /openbmc/qemu/tests/qapi-schema/alternate-conflict-lists.json (revision ab1b2ba9c9e9871bb622b0f14a1b2e3f4adaa68f)
1# Two lists conflict even if their inner types would be compatible
2{ 'struct': 'One',
3  'data': { 'name': 'str' } }
4{ 'alternate': 'Alt',
5  'data': { 'one': [ 'int' ],
6            'two': [ 'str' ] } }
7