(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
torture/
pr81812.C
struct Error {
  virtual void error(... ) const;
};

struct ChildNode : virtual Error {
  void error(... ) const;
};

void ext(const char*, ...);

void ChildNode::error(...) const
{
#ifdef FIX
  ext("");
#endif
}