mirror of https://gitee.com/openkylin/qemu.git
10 lines
237 B
JSON
10 lines
237 B
JSON
|
# we check for no duplicate keys with indirect base
|
||
|
{ 'struct': 'Base',
|
||
|
'data': { 'name': 'str' } }
|
||
|
{ 'struct': 'Mid',
|
||
|
'base': 'Base',
|
||
|
'data': { 'value': 'int' } }
|
||
|
{ 'struct': 'Sub',
|
||
|
'base': 'Mid',
|
||
|
'data': { '*name': 'str' } }
|