[Bug java/17691] error on valid java code from freenet
mark at gcc dot gnu dot org
gcc-bugzilla@gcc.gnu.org
Wed Sep 29 22:44:00 GMT 2004
------- Additional Comments From mark at gcc dot gnu dot org 2004-09-29 22:44 -------
Then a workaround is:
class A
{
int x()
{
return 0;
}
}
class B extends A
{
int x()
{
return 1;
}
// Extra workaround method
int ax()
{
return super.x();
}
class C
{
int y()
{
return ax();
}
}
}
But this is getting silly indeed.
It is a real bug that mist be fixed.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17691
More information about the Gcc-bugs
mailing list