Reports methods that call themselves infinitely unless an exception is thrown.

Methods reported by this inspection cannot return normally. While such behavior may be intended, in many cases this is just an oversight.

Example:

  int baz() {
      return baz();
  }