blob: 4fe1eb062f4e55804f1c0a1c6347c39c6367f931 [file] [log] [blame]
// { dg-options "-O3 -flifetime-dse" }
// { dg-do run }
template <class T>
void f()
{
T t = 42;
t.~T();
if (t == 42) __builtin_abort();
}
int main()
{
f<int>();
}