Description
When executing a simple script in an Eclipse environment, the use of a variable i leads to this error :
"The variable name 'i' conflicts with the class name 'i'", even if no class "i" exists.
The loadClass() function of the GroovyClassLoader class seems to find an inexisting i class.
Some i classes exist in the Eclipse project like org.argouml.ui.i, but none without any package.
Nevertheless, the GroovyClassLoader find an i class and script finishes with the above error.
Used script :
<%
int i = 0
%>