historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/tests/qapi-schema/doc-bad-union-member.json

20 lines
326 B
JSON
Raw Normal View History

2024-01-16 11:20:27 -06:00
# Arguments listed in the doc comment must exist in the actual schema
##
# @Frob:
# @a: a
# @b: b
##
{ 'union': 'Frob',
'base': 'Base',
'discriminator': 'type',
'data': { 'nothing': 'Empty' } }
{ 'struct': 'Base',
'data': { 'type': 'T' } }
{ 'struct': 'Empty',
'data': { } }
{ 'enum': 'T', 'data': ['nothing'] }