]> git.proxmox.com Git - mirror_qemu.git/blame - tests/qapi-schema/doc-bad-union-member.json
target/riscv: Allow debugger to access seed CSR
[mirror_qemu.git] / tests / qapi-schema / doc-bad-union-member.json
CommitLineData
f641d06a
MA
1# Arguments listed in the doc comment must exist in the actual schema
2
3##
4# @Frob:
5# @a: a
6# @b: b
7##
8{ 'union': 'Frob',
9 'base': 'Base',
10 'discriminator': 'type',
11 'data': { 'nothing': 'Empty' } }
12
13{ 'struct': 'Base',
3e6c8a63 14 'data': { 'type': 'FrobType' } }
f641d06a
MA
15
16{ 'struct': 'Empty',
17 'data': { } }
18
3e6c8a63 19{ 'enum': 'FrobType', 'data': ['nothing'] }