Reports methods which must either recurse infinitely or throw an exception. Methods reported by this inspection could not be finished correct.

Example:


// this function always dive deeper
def fibonacci(int n) {
  return fibonacci(n-1) + fibonacci(n-2)
}