summaryrefslogtreecommitdiff
path: root/tests/qapi-schema/alternate-conflict-string.json
blob: 3834a3ddfe1ea992f9bd829eb0ab82f359fd7252 (plain)
1
2
3
4
5
6
7
# we reject anonymous unions with multiple string-like branches
{ 'enum': 'Enum',
  'data': [ 'hello', 'world' ] }
{ 'union': 'MyUnion',
  'discriminator': {},
  'data': { 'one': 'str',
            'two': 'Enum' } }