This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Bug with nested classes
- From: Michael Koch <konqueror at gmx dot de>
- To: java at gcc dot gnu dot org
- Date: Mon, 3 Jun 2002 15:11:09 +0200
- Subject: Bug with nested classes
Hello List,
I currently try to build ant with gcj-3.1 (Debian packages on Debian Sid,
3.1.1-0pre1). The build fails with the following error:
src/main/org/apache/tools/ant/util/facade/ImplementationSpecificArgument.java:69:
Superclass `Commandline.Argument' of class
`org.apache.tools.ant.util.facade.ImplementationSpecificArgument' not found.
public class ImplementationSpecificArgument extends Commandline.Argument {
^
1 error
The class Argument is declared as follows in Commandline.java:
public class Commandline implements Cloneable {
...
public static class Argument {
...
}
...
}
It seems gcj doesnt found the class Commandline.Argument to derive from it.
If you have further questions on this bug, just mail me.
Greetings,
Michael