summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/struct-base-clash-deep.json
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/qapi-schema/struct-base-clash-deep.json')
-rw-r--r--qemu/tests/qapi-schema/struct-base-clash-deep.json12
1 files changed, 0 insertions, 12 deletions
diff --git a/qemu/tests/qapi-schema/struct-base-clash-deep.json b/qemu/tests/qapi-schema/struct-base-clash-deep.json
deleted file mode 100644
index fa873ab5d..000000000
--- a/qemu/tests/qapi-schema/struct-base-clash-deep.json
+++ /dev/null
@@ -1,12 +0,0 @@
-# Reject attempts to duplicate QMP members
-# Here, 'name' would have to appear twice on the wire, locally and
-# indirectly for the grandparent base; the collision doesn't care that
-# one instance is optional.
-{ 'struct': 'Base',
- 'data': { 'name': 'str' } }
-{ 'struct': 'Mid',
- 'base': 'Base',
- 'data': { 'value': 'int' } }
-{ 'struct': 'Sub',
- 'base': 'Mid',
- 'data': { '*name': 'str' } }