]> git.proxmox.com Git - mirror_qemu.git/blobdiff - tests/qapi-schema/struct-base-clash.json
qapi: add qapi2texi script
[mirror_qemu.git] / tests / qapi-schema / struct-base-clash.json
index 11aec80fe53191cf53b793199c3e353356042cde..a8539958b59bf857c8925712bdc68ebfc8180250 100644 (file)
@@ -1,7 +1,14 @@
 # Reject attempts to duplicate QMP members
 # Here, 'name' would have to appear twice on the wire, locally and for base.
+
+##
+# @Base:
+##
 { 'struct': 'Base',
   'data': { 'name': 'str' } }
+##
+# @Sub:
+##
 { 'struct': 'Sub',
   'base': 'Base',
   'data': { 'name': 'str' } }