QEMU main repository: Please see https://www.qemu.org/docs/master/devel/submitting-a-patch.html for how to submit changes to QEMU. Pull Requests are ignored. Please only use release tarballs from the QEMU website. http://www.qemu.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
655 B
18 lines
655 B
# Flat union branch name collision
|
|
# FIXME: this parses, but then fails to compile due to a duplicate 'c_d'
|
|
# (one from the base member, the other from the branch name). We should
|
|
# either reject the collision at parse time, or munge the generated branch
|
|
# name to allow this to compile.
|
|
{ 'enum': 'TestEnum',
|
|
'data': [ 'base', 'c-d' ] }
|
|
{ 'struct': 'Base',
|
|
'data': { 'enum1': 'TestEnum', '*c_d': 'str' } }
|
|
{ 'struct': 'Branch1',
|
|
'data': { 'string': 'str' } }
|
|
{ 'struct': 'Branch2',
|
|
'data': { 'value': 'int' } }
|
|
{ 'union': 'TestUnion',
|
|
'base': 'Base',
|
|
'discriminator': 'enum1',
|
|
'data': { 'base': 'Branch1',
|
|
'c-d': 'Branch2' } }
|
|
|