blob: 3f9803c39a837864aa53b48bc9b289f4e7cab5e2 [file] [log] [blame]
// Test for use of typedef in explicit destructor call.
#include <new>
struct X {
typedef X foo;
};
X x;
unsigned char bar[sizeof (X)];
int
main ()
{
X* p = new (bar) X;
p->~foo();
};