Sign in
qemu-android
/
qemu-android
/
d697e30cfff29a6a72e3197a218294ba52e7f0c6
/
.
/
tests
/
qapi-schema
/
union-bad-branch.json
blob: 913aa38bc85209023d50bea27f2990acf6e18898 [
file
] [
log
] [
blame
]
#
we reject normal unions where branches would collide in C
{
'struct'
:
'One'
,
'data'
:
{
'string'
:
'str'
}
}
{
'struct'
:
'Two'
,
'data'
:
{
'number'
:
'int'
}
}
{
'union'
:
'MyUnion'
,
'data'
:
{
'one'
:
'One'
,
'ONE'
:
'Two'
}
}