diff options
Diffstat (limited to 'tests/qapi-schema/alternate-conflict-enum-bool.json')
-rw-r--r-- | tests/qapi-schema/alternate-conflict-enum-bool.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/qapi-schema/alternate-conflict-enum-bool.json b/tests/qapi-schema/alternate-conflict-enum-bool.json new file mode 100644 index 0000000000..bff25c3147 --- /dev/null +++ b/tests/qapi-schema/alternate-conflict-enum-bool.json @@ -0,0 +1,6 @@ +# alternate branch of 'enum' type that conflicts with bool +{ 'enum': 'Enum', + 'data': [ 'aus', 'off' ] } +{ 'alternate': 'Alt', + 'data': { 'one': 'Enum', + 'two': 'bool' } } |