]> git.proxmox.com Git - mirror_qemu.git/blobdiff - tests/qapi-schema/flat-union-empty.json
qapi: add qapi2texi script
[mirror_qemu.git] / tests / qapi-schema / flat-union-empty.json
index 77f1d9abfb8f9b39a0a9dd9a03be3cb4e4343c15..afa89882054e4177bd0578391afa0ad98f2c5a46 100644 (file)
@@ -1,4 +1,14 @@
 # flat unions cannot be empty
+
+##
+# @Empty:
+##
 { 'enum': 'Empty', 'data': [ ] }
+##
+# @Base:
+##
 { 'struct': 'Base', 'data': { 'type': 'Empty' } }
+##
+# @Union:
+##
 { 'union': 'Union', 'base': 'Base', 'discriminator': 'type', 'data': { } }