xref: /openbmc/qemu/tests/qapi-schema/bad-base.json (revision 0806b30c8dff64e944456aa15bdc6957384e29a8)
1# we reject a base that is not a struct
2{ 'union': 'Union', 'data': { 'a': 'int', 'b': 'str' } }
3{ 'struct': 'MyType', 'base': 'Union', 'data': { 'c': 'int' } }
4