blob: a2c985386e4df0fdabbca5e46a46f4879b372497 [file] [log] [blame]
// { dg-do assemble }
// This tests for the compiler_error in binfo_value.
// prms-id: 3538
class ccObjectInfo
{
public:
virtual const ccObjectInfo& repInvariant (int);
};
template<class T>
class ccHandle : public ccObjectInfo
{
protected:
T* p;
public:
virtual const ccObjectInfo& repInvariant (int);
};
template <class T>
const ccObjectInfo& ccHandle<T>::repInvariant (int)
{ return p->ri(1); }
class ccHandleBase : public ccObjectInfo
{};
class cc_CircleHdl : public virtual ccHandleBase, public ccObjectInfo // { dg-warning "" }
{
public:
virtual const ccObjectInfo& ri (int);
};
class ccCircleHdl : public ccHandle <cc_CircleHdl> {};