kit

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

6_5_67_file_scope_compound_literal_nested_reloc.c (93B)


      1 static int x = 41;
      2 static int** pp = (int*[]){&x};
      3 
      4 int test_main(void) { return **pp + 1; }