Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
tests
/
qapi-schema
/
struct-base-clash.json
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
json
7 lines
237 Bytes
Copy permalink
Copy
Raw
1
#
Reject
attempts
to
duplicate
QMP
members
2
#
Here,
'name'
would
have
to
appear
twice
on
the
wire,
locally
and
for
base.
3
{
'struct':
'Base'
,
4
'data':
{
'name':
'str'
}
}
5
{
'struct':
'Sub'
,
6
'base':
'Base'
,
7
'data':
{
'name':
'str'
}
}