]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qapi-schema/struct-base-clash.json
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[mirror_qemu.git] / tests / qapi-schema / struct-base-clash.json
1 # we check for no duplicate keys with base
2 { 'struct': 'Base',
3 'data': { 'name': 'str' } }
4 { 'struct': 'Sub',
5 'base': 'Base',
6 'data': { 'name': 'str' } }