vfio: remove a duplicated word in comments
[qemu/ar7.git] / tests / qapi-schema / union-base-no-discriminator.json
blobcc6bac14242f6b907463a1136e098c9b2a1cab30
1 ##
2 # @TestTypeA:
3 ##
4 # we reject simple unions with a base (or flat unions without discriminator)
5 { 'struct': 'TestTypeA',
6   'data': { 'string': 'str' } }
8 ##
9 # @TestTypeB:
11 { 'struct': 'TestTypeB',
12   'data': { 'integer': 'int' } }
15 # @Base:
17 { 'struct': 'Base',
18   'data': { 'string': 'str' } }
21 # @TestUnion:
23 { 'union': 'TestUnion',
24   'base': 'Base',
25   'data': { 'value1': 'TestTypeA',
26             'value2': 'TestTypeB' } }