xref: /openbmc/qemu/tests/qapi-schema/bad-base.json (revision 0ab8ed18a6fe98bfc82705b0f041fbf2a8ca5b60)
1# we reject a base that is not a struct
2
3##
4# @Union:
5##
6{ 'union': 'Union', 'data': { 'a': 'int', 'b': 'str' } }
7##
8# @MyType:
9##
10{ 'struct': 'MyType', 'base': 'Union', 'data': { 'c': 'int' } }
11