view paper/src/unionOrder1.c @ 111:4642d2f215d2

update
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sat, 06 Feb 2021 15:42:26 +0900
parents 45bd5338dc82
children
line wrap: on
line source

union Data {
  struct A {
    struct B b;
  } A;
  struct B {
    int i;
  } B;
};