Home
       0109-struct.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
       ---
       0109-struct.c (107B)
       ---
            1 struct S1 { int x; };
            2 struct S2 { struct S1 s1; };
            3 
            4 int
            5 main()
            6 {
            7         struct S2 s2;
            8         s2.s1.x = 1;
            9         return 0;
           10 }