blob: d235e237588843f1007fd3845287a3e7c426671c [file] [log] [blame]
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
}