[Bug java/17691] error on valid java code from freenet

2007-01-09 Thread tromey at gcc dot gnu dot org
--- Comment #7 from tromey at gcc dot gnu dot org 2007-01-09 20:46 --- All gcj front end bugs have been fixed by the gcj-eclipse branch merge. I'm mass-closing the affected PRs. If you believe one of these was closed in error, please reopen it with a note explaining why. Thanks. -- t

[Bug java/17691] error on valid java code from freenet

2004-09-28 Thread ruben at ugr dot es
--- Additional Comments From ruben at ugr dot es 2004-09-28 09:13 --- (In reply to comment #4) This might be a completely unrelated bug; at least the error message is different. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17691

[Bug java/17691] error on valid java code from freenet

2004-09-28 Thread ruben at ugr dot es
--- Additional Comments From ruben at ugr dot es 2004-09-28 09:10 --- The workaround does not work when in an inner class. This was the original problem. >cat a.java class A { int x() { return 0; } } class B extends A { int x(){ return 1; } class C {