Reports any include directives in a JSP file which refer to the containing JSP file.

Example JSP file named main.jsp:


  <jsp:include page="./main.jsp" /> // Error: attempt to include the containing file
  ...

NOTE: Such self-including leads to infinite recursion and so the JSP file cannot be compiled.