]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qapi-schema/alternate-base.json
Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2017-01-16' into staging
[mirror_qemu.git] / tests / qapi-schema / alternate-base.json
1 # we reject alternate with base type
2
3 ##
4 # @Base:
5 ##
6 { 'struct': 'Base',
7 'data': { 'string': 'str' } }
8 ##
9 # @Alt:
10 ##
11 { 'alternate': 'Alt',
12 'base': 'Base',
13 'data': { 'number': 'int' } }