target/arm: Use _ra versions of cpu_stl_data() in v7M helpers
[qemu/ar7.git] / tests / qapi-schema / union-invalid-base.json
blob92be39df69ae7fce191f5113fb82f2be3fd80157
1 # a union base type must be a struct
2 { 'struct': 'TestTypeA',
3   'data': { 'string': 'str' } }
5 { 'struct': 'TestTypeB',
6   'data': { 'integer': 'int' } }
8 { 'union': 'TestUnion',
9   'base': 'int',
10   'discriminator': 'int',
11   'data': { 'value1': 'TestTypeA',
12             'value2': 'TestTypeB' } }