kit

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

6_8_26_goto_into_nested_block.c (92B)


      1 int test_main(void) {
      2   int r = 0;
      3   goto inner;
      4   {
      5   inner:
      6     r = 42;
      7   }
      8   return r;
      9 }