2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / torture / pr81812.C
blobd235e237588843f1007fd3845287a3e7c426671c
1 struct Error {
2   virtual void error(... ) const;
3 };
5 struct ChildNode : virtual Error {
6   void error(... ) const;
7 };
9 void ext(const char*, ...);
11 void ChildNode::error(...) const
13 #ifdef FIX
14   ext("");
15 #endif