Bug#225434: gcj-3.3: problems with static inner classes of interfaces

2003-12-29 Thread Ralf Neubauer
Package: gcj-3.3 Version: 1:3.3-1.bunk.2 Severity: normal the compilation of A.java: interface A { static class B { } } C.java: interface C extends A { B getB(); } D.java: class D { public static void main (String[] argv) { Object o = new C() { public B

Bug#225438: gcj-3.3: not implemented interface methods of abstract classes not found

2003-12-29 Thread Ralf Neubauer
Package: gcj-3.3 Version: 1:3.3-1.bunk.2 Severity: normal the compilation of G.java: import q.*; abstract class G extends F { public String toString() { return String.valueOf(bla()); } } q/F.java: package q; import p.*; public abstract class F implements E { } p/E.java: package