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