blob: 25ef1cfe7335c1da4806671399eb9e4e6be56fe2 [file] [log] [blame]
// { dg-do assemble }
// PRMS Id: 5420
// Bug: g++ gets mixed up calling destructors for references.
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();
}