qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

union-base-empty.json (228B)


      1 # Union with empty base and therefore without discriminator
      2 
      3 { 'struct': 'Empty', 'data': { } }
      4 
      5 { 'union': 'TestUnion',
      6   'base': 'Empty',
      7   'discriminator': 'type',
      8   'data': { 'value1': 'int',
      9             'value2': 'str' } }