kit

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

gnu_computed_goto_non_pointer.c (111B)


      1 /* The computed-goto operand must be a pointer. */
      2 int test_main(void) {
      3   int x = 0;
      4   goto* x;
      5   return 0;
      6 }