This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
inner classes
- From: Dhek Bhun Kho <bhun at chello dot nl>
- To: java at gcc dot gnu dot org
- Date: 13 Dec 2002 03:18:44 +0100
- Subject: inner classes
I was busy tweaking ant, and found something curious. I don't know if it
has already been reported but it concerns:
package org.apache.tools.ant.util.facade;
import org.apache.tools.ant.types.Commandline
public class ImplementationSpecificArgument extends Commandline.Argument
{
...
}
-- this doesn't compile!
but when I change the super class declaration to be fully qualified it
does! e.g.:
public class ImplementationSpecificArgument extends
org.apache.tools.ant.types.Commandline.Argument {
--- this compiles