]> git.proxmox.com Git - mirror_qemu.git/blobdiff - tests/qapi-schema/struct-base-clash.json
scripts: Explicit usage of Python 3 (scripts without __main__)
[mirror_qemu.git] / tests / qapi-schema / struct-base-clash.json
index a8539958b59bf857c8925712bdc68ebfc8180250..11aec80fe53191cf53b793199c3e353356042cde 100644 (file)
@@ -1,14 +1,7 @@
 # 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' } }