target/mips: Use OPC_MUL instead of OPC__MXU_MUL
[qemu/ar7.git] / tests / qapi-schema / flat-union-invalid-if-discriminator.json
blobe49992b7984d11ad85b81d3744fc948e5977eede
1 { 'enum': 'TestEnum',
2   'data': [ 'value1', 'value2' ] }
4 { 'struct': 'TestTypeA',
5   'data': { 'string': 'str' } }
7 { 'struct': 'TestTypeB',
8   'data': { 'integer': 'int' } }
10 { 'union': 'TestUnion',
11   'base': { 'enum1': { 'type': 'TestEnum', 'if': 'FOO' } },
12   'discriminator': 'enum1',
13   'data': { 'value1': 'TestTypeA',
14             'value2': 'TestTypeB' } }