blob: ef92f9b583c62da5b6a8e334c489b55de11a7f74 [file] [log] [blame]
# we require the discriminator to be a string naming a base-type member
# this tests the old syntax for anonymous unions before we added alternates
##
# @TestEnum:
##
{ 'enum': 'TestEnum',
'data': [ 'value1', 'value2' ] }
##
# @TestBase:
##
{ 'struct': 'TestBase',
'data': { 'enum1': 'TestEnum', 'kind': 'str' } }
##
# @TestTypeA:
##
{ 'struct': 'TestTypeA',
'data': { 'string': 'str' } }
##
# @TestTypeB:
##
{ 'struct': 'TestTypeB',
'data': { 'integer': 'int' } }
##
# @TestUnion:
##
{ 'union': 'TestUnion',
'base': 'TestBase',
'discriminator': {},
'data': { 'kind1': 'TestTypeA',
'kind2': 'TestTypeB' } }