tests/acpi: Update DSDT.cxl to reflect change _STA return value.
[qemu/ar7.git] / tests / qapi-schema / union-branch-if-invalid.json
blobc41633856f4787d7d7bb8961f29ec17c11449f7c
1 # Cover branch with invalid 'if'
2 { 'enum': 'Branches', 'data': ['branch1'] }
3 { 'struct': 'Stru', 'data': { 'member': 'str' } }
4 { 'union': 'Uni',
5   'base': { 'tag': 'Branches' }, 'discriminator': 'tag',
6   'data': { 'branch1': { 'type': 'Stru', 'if': { 'all': [''] } } } }