<%@page contentType="text/html"%> <%@page language="java" import="OC.*"%> JSP Page

Testcase for bug 27024

<%-- --%> <%-- --%>

To reproduce:

  1. 1. Put OtherClass.java to WEB-INF/classes/OC directory
  2. 2. Open this JSP file and press F4 on line 18.
  3. 3. Wait while debugger stop on this line and continue debugger by F7 (stop on first line with code). Repeat this step several times

<% startTest(); %> Result: no any way to step into class OtherClass!! <%! public void startTest(){ Runnable runner = new Runnable() { public void run() { OC.OtherClass.start(); } }; new Thread(runner).start(); } %>