Basically what I did was I created a class test.Test a while ago.
Then I deleted it.
Now in the same project, I’m create test.Test again, and when I reference that class in my JSP, on the <%@ page import=”test.*” %>, and in the code itself:
<%=Test.test()%>
I’m given 2 errors:
1) import test.* is never referenced
2) method test() does not exist.
These are errors from myecliese, the page itself compiles and runs just fine.
I am not able to reproduce this bug.