無限再帰のあるメソッドと関数を報告します。

例:


  int factorial(int n) {
    return n * factorial(n - 1);
  }