aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/flat-union-empty.json
blob: afa89882054e4177bd0578391afa0ad98f2c5a46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# flat unions cannot be empty

##
# @Empty:
##
{ 'enum': 'Empty', 'data': [ ] }
##
# @Base:
##
{ 'struct': 'Base', 'data': { 'type': 'Empty' } }
##
# @Union:
##
{ 'union': 'Union', 'base': 'Base', 'discriminator': 'type', 'data': { } }