aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/dtor4.C
blob: dfdc3aafd6cfda39bccf9f4358e10e48bdcb6cd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// PRMS Id: 5420
// Bug: g++ gets mixed up calling destructors for references.
// Build don't link:

template<class X>
class Z {
public:
    char space[100];
    void kill()
	{ X& x = (X&) space[0];
	  x.~X(); }
};

class C { int i; };

void
f()
{
    Z<int> r;
    r.kill();
    Z<C> s;
    s.kill();
}