diff options
Diffstat (limited to 'qemu/tests/qapi-schema/bad-base.json')
-rw-r--r-- | qemu/tests/qapi-schema/bad-base.json | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qemu/tests/qapi-schema/bad-base.json b/qemu/tests/qapi-schema/bad-base.json new file mode 100644 index 000000000..a634331cd --- /dev/null +++ b/qemu/tests/qapi-schema/bad-base.json @@ -0,0 +1,3 @@ +# we reject a base that is not a struct +{ 'union': 'Union', 'data': { 'a': 'int', 'b': 'str' } } +{ 'struct': 'MyType', 'base': 'Union', 'data': { 'c': 'int' } } |