glib: add compatibility interface for g_strcmp0()
[qemu/ar7.git] / tests / qapi-schema / flat-union-no-base.json
blob50f267323b209b4a9153ad62ca936dc4e198a4c7
1 { 'type': 'TestTypeA',
2   'data': { 'string': 'str' } }
4 { 'type': 'TestTypeB',
5   'data': { 'integer': 'int' } }
7 { 'union': 'TestUnion',
8   'discriminator': 'enum1',
9   'data': { 'value1': 'TestTypeA',
10             'value2': 'TestTypeB' } }