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