aboutsummaryrefslogtreecommitdiffstats
path: root/tests/qapi-schema/bad-base.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qapi-schema/bad-base.json')
-rw-r--r--tests/qapi-schema/bad-base.json3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/qapi-schema/bad-base.json b/tests/qapi-schema/bad-base.json
new file mode 100644
index 00000000..a634331c
--- /dev/null
+++ b/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' } }