4 lines
201 B
JSON
4 lines
201 B
JSON
# flat union discriminator cannot be empty
|
|
{ 'enum': 'Empty', 'data': [ ] }
|
|
{ 'struct': 'Base', 'data': { 'type': 'Empty' } }
|
|
{ 'union': 'Union', 'base': 'Base', 'discriminator': 'type', 'data': { } }
|