kit

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

6_5_16_08_suppressed_assign.c (77B)


      1 int test_main(void) {
      2   int x = 42;
      3   if (0) {
      4     x = 13;
      5   }
      6   return x;
      7 }