rtl8139: fix Pointer to local outside scope
[qemu/cris-port.git] / tests / qapi-schema / flat-union-invalid-branch-key.json
bloba6242823ed22cea9e6673e955ac8d4413cd24845
1 { 'enum': 'TestEnum',
2   'data': [ 'value1', 'value2' ] }
4 { 'type': 'TestBase',
5   'data': { 'enum1': 'TestEnum' } }
7 { 'type': 'TestTypeA',
8   'data': { 'string': 'str' } }
10 { 'type': 'TestTypeB',
11   'data': { 'integer': 'int' } }
13 { 'union': 'TestUnion',
14   'base': 'TestBase',
15   'discriminator': 'enum1',
16   'data': { 'value_wrong': 'TestTypeA',
17             'value2': 'TestTypeB' } }