Fortran: Fix PR 47485.
[gcc.git] / gcc / testsuite / g++.dg / torture / pr81812.C
blobb5c621d2beb24f5130826b787eabfd52ea993a43
1 // { dg-xfail-if "PR108277" { arm_thumb1 } }
3 struct Error {
4   virtual void error(... ) const;
5 };
7 struct ChildNode : virtual Error {
8   void error(... ) const;
9 };
11 void ext(const char*, ...);
13 void ChildNode::error(...) const
15 #ifdef FIX
16   ext("");
17 #endif