msix: implement pba write (but read-only)
[qemu/ar7.git] / tests / qapi-schema / struct-base-clash-base.json
blob0c840258c9f9d2a9d5931a3f02ef9014f322499f
1 # Struct member 'base'
2 # FIXME: this parses, but then fails to compile due to a duplicate 'base'
3 # (one explicit in QMP, the other used to box the base class members).
4 # We should either reject the collision at parse time, or change the
5 # generated struct to allow this to compile.
6 { 'struct': 'Base', 'data': {} }
7 { 'struct': 'Sub',
8   'base': 'Base',
9   'data': { 'base': 'str' } }