------- Additional Comments From phil at mkdoc dot com 2004-12-22 18:06 -------
Also affects GCJ 3.3.3 (cygwin special). Can I suggest the summary is changed
to
"Wildcard import statements not resolved", which seems more specific to me and
may avoid duplicate submissions.
This test case implements an interface, but the same applies extending an
abstract or concrete class, it's the import statement that is the problem:
-- WildcardImport.java
package com.example.bug;
import com.example.other.*;
public class WildcardImport implements Interfacer {
// Empty
}
-- Interfacer.java
package com.example.other;
public interface Interfacer {
// Empty
}
This is with commands like:
gcj -C -d /build @gcj-src.txt
--
What |Removed |Added
----------------------------------------------------------------------------
CC| |phil at mkdoc dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=10894