aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.other/dtor13.C
blob: 0b998ab4692c2b97b3b1786dca3ac44af21524ac (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do assemble  }
// Origin: Mark Mitchell <mark@codesourcery.com>

template <class T> struct S { ~S(); };
int i;

void f () 
{
  i.~S(); // { dg-error "" } invalid destructor call.
}