aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/tempdest.C
blob: 78fb75df22c75ce8500143806468752d3a9efb86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Build don't link: 
// GROUPS passed templates destructors
// Example of PR 3308 workaround

template <class T>
class A
{
  T q;
public:
  ~A() { (&q)->T::~T(); }
};

typedef unsigned int ui;

main()
{
  A<ui> *ap = new A<ui>;

  delete ap;
}