aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/alternate-base.json
blob: dad7f029981b46c835b6eae1eb8439f4f3f15fab (plain)
1
2
3
4
5
6
7
# we reject anonymous union with base type
{ 'type': 'Base',
  'data': { 'string': 'str' } }
{ 'union': 'MyUnion',
  'base': 'Base',
  'discriminator': {},
  'data': { 'number': 'int' } }