Reports methods and functions with infinite recursion.

Example:


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