aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/base-cycle-indirect.json
blob: 99926c46098b5df533afbfbc80dff141cc54bf5b (plain)
1
2
3
4
5
6
7
8
9
10
# we reject a loop in base classes

##
# @Base1:
##
{ 'struct': 'Base1', 'base': 'Base2', 'data': {} }
##
# @Base2:
##
{ 'struct': 'Base2', 'base': 'Base1', 'data': {} }