aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/union-clash-branches.json
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qapi-schema/union-clash-branches.json')
-rw-r--r--tests/qapi-schema/union-clash-branches.json7
1 files changed, 0 insertions, 7 deletions
diff --git a/tests/qapi-schema/union-clash-branches.json b/tests/qapi-schema/union-clash-branches.json
deleted file mode 100644
index 7bdda0b0da..0000000000
--- a/tests/qapi-schema/union-clash-branches.json
+++ /dev/null
@@ -1,7 +0,0 @@
-# Union branch name collision
-# Naming rules make collision impossible (even with the pragma). If
-# that wasn't the case, then we'd get collisions in generated C: two
-# union members a_b, and two enum members TEST_UNION_A_B.
-{ 'pragma': { 'member-name-exceptions': [ 'TestUnion' ] } }
-{ 'union': 'TestUnion',
- 'data': { 'a-b': 'int', 'a_b': 'str' } }