kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_7_9_28_static_flat_struct_init.c (156B)


      1 struct I {
      2   int a;
      3   int b;
      4 };
      5 
      6 struct O {
      7   struct I i;
      8   int c;
      9 };
     10 
     11 static struct O o = {1, 2, 39};
     12 
     13 int test_main(void) { return o.i.a + o.i.b + o.c; }