xref: /openbmc/qemu/tests/qapi-schema/alternate-conflict-lists.json (revision 1bbbe7cf2df11a1bc334489a3b87ee23e13c3c29)
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