gcc/libvtv/testsuite/libvtv.cc/template-list2.cc
Caroline Tice 41e96dc8f0 Update libvtv testsuite so that most of the tests now run under
the dejagnu test harness.

From-SVN: r202373
2013-09-08 16:35:14 -07:00

47 lines
611 B
C++

// { dg-do run }
#include <assert.h>
extern "C" int printf(const char *, ...);
class Subscriptor
{
public:
Subscriptor()
{ counter = 1;}
virtual ~Subscriptor()
{
counter--;
assert(counter == 0);
}
private:
static int counter;
};
int Subscriptor::counter;
template <typename number>
class Polynomial : public Subscriptor
{
};
class LagrangeEquidistant: public Polynomial<double>
{
};
template<typename _Tp>
inline void
_MyDestroy(_Tp* __pointer)
{ __pointer->~_Tp(); }
int main()
{
LagrangeEquidistant * s1 = new LagrangeEquidistant;
_MyDestroy(s1);
return 0;
}