Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.1
-
None
Description
When using the Eclipse compiler, I am unable to compile additional top-level classes. For example,
package jci; public class Simple { public String toString() { return "Simple"; } } class AdditionalTopLevel { public String toString() { return "AdditionalTopLevel"; } }
Causes the compile error warning: The type AdditionalTopLevel collides with a package.
This works fine with the Javac compiler and the Janino compiler.