vfio: remove a duplicated word in comments
[qemu/ar7.git] / tests / qapi-schema / union-invalid-base.json
blobfd837cb80bebed63a6122535bdaf4a04ea33b34a
1 # a union base type must be a struct
3 ##
4 # @TestTypeA:
5 ##
6 { 'struct': 'TestTypeA',
7   'data': { 'string': 'str' } }
9 ##
10 # @TestTypeB:
12 { 'struct': 'TestTypeB',
13   'data': { 'integer': 'int' } }
16 # @TestUnion:
18 { 'union': 'TestUnion',
19   'base': 'int',
20   'discriminator': 'int',
21   'data': { 'value1': 'TestTypeA',
22             'value2': 'TestTypeB' } }