------- Additional Comments From trauscher at loytec dot com  2005-05-25 09:35 
-------
Another small testcase (failed on arm-elf, 4.0.0)

struct A
{
  A( const A &a);
  const A& operator=( const A& a);
};

struct B
{
  virtual A f();
};

struct C : virtual B
{
  virtual A f();
  A a;
};

A C::f() 
{
  return a;
}

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21123

Reply via email to