summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/struct-base-clash.json
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/qapi-schema/struct-base-clash.json')
-rw-r--r--qemu/tests/qapi-schema/struct-base-clash.json7
1 files changed, 0 insertions, 7 deletions
diff --git a/qemu/tests/qapi-schema/struct-base-clash.json b/qemu/tests/qapi-schema/struct-base-clash.json
deleted file mode 100644
index 11aec80fe..000000000
--- a/qemu/tests/qapi-schema/struct-base-clash.json
+++ /dev/null
@@ -1,7 +0,0 @@
-# Reject attempts to duplicate QMP members
-# Here, 'name' would have to appear twice on the wire, locally and for base.
-{ 'struct': 'Base',
- 'data': { 'name': 'str' } }
-{ 'struct': 'Sub',
- 'base': 'Base',
- 'data': { 'name': 'str' } }