aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/crash6.C
blob: 8e0a9c861f2a2c615943055490ba5df5ecf754d8 (plain)
1
2
3
4
5
6
7
8
9
// Bug: g++ dies on the below.
// Build don't link:

class A { };
void f ()
{
  A a;
  a.~a();			// ERROR - causes segfault
}