blob: 49c02ec1e784d2568bbdee3786edd7371b31366c [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T> struct S { ~S(); };
int i;
void f ()
{
i.~S(); // ERROR - invalid destructor call.
}