xref: /openbmc/qemu/tests/qapi-schema/bad-base.json (revision 52f2b8961409be834abaee5189bff2cc9e372851)
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