Home
       0043-union.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0043-union.c (115B)
       ---
            1 int
            2 main()
            3 {
            4         union { int a; int b; } u;
            5         u.a = 1;
            6         u.b = 3;
            7         
            8         if (u.a != 3 || u.b != 3)
            9                 return 1;
           10         return 0;
           11 }