seccomp: add cacheflush to whitelist
[qemu/ar7.git] / tests / qapi-schema / union-clash-type.json
blobcfc256b04d39e87527a6cb39407bf67a3f6cdc8f
1 # Union branch 'type'
2 # Reject this, because we would have a clash in generated C, between the
3 # simple union's implicit tag member 'kind' and the branch name 'kind'
4 # within the union.
5 # TODO: Even when the generated C is switched to use 'type' rather than
6 # 'kind', to match the QMP spelling, the collision should still be detected.
7 # Or, we could munge the branch name to allow compilation.
8 { 'union': 'TestUnion',
9   'data': { 'kind': 'int', 'type': 'str' } }