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': { } }