aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/struct-base-clash.json
blob: a8539958b59bf857c8925712bdc68ebfc8180250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Reject attempts to duplicate QMP members
# Here, 'name' would have to appear twice on the wire, locally and for base.

##
# @Base:
##
{ 'struct': 'Base',
  'data': { 'name': 'str' } }
##
# @Sub:
##
{ 'struct': 'Sub',
  'base': 'Base',
  'data': { 'name': 'str' } }