PR c++/26957
[official-gcc.git] / gcc / testsuite / g++.dg / inherit / thunk6.C
blobb8e316d087b6a663878964b3832549fccc77cc89
1 // PR c++/26957
3 struct LongDouble {
4     char ld[16];
5 };
7 struct DynAny  {
8     virtual void insert_longdouble(LongDouble value) = 0;
9 };
11 struct TAO_DynCommon : public virtual DynAny {
12     virtual void insert_longdouble (LongDouble value);
15 void TAO_DynCommon::insert_longdouble (LongDouble value) { }