Home
       0024-typedefstruct.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
       ---
       0024-typedefstruct.c (102B)
       ---
            1 typedef struct { int x; int y; } s;
            2 
            3 s v;
            4 
            5 int
            6 main()
            7 {
            8         v.x = 1;
            9         v.y = 2;
           10         return 3 - v.x - v.y;
           11 }
           12