This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


------- 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]