Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#FFCCCC
int test (int x) {
  x--;
  if (x < 0 || x > 10) {
    return 0;
  }
  else {
    static int y = test(x);  //<--undefined behavior occurs here
    return y;
  }
}

...

Code Block
bgColor#ccccff
int test (int x) {
  x--;
  if (x < 0 || x > 10) {
    return 0;
  }
  else
  {
    static int y;
    y = test(x);  
    return y;
  }
}

...