aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/crash25.C
blob: 2f471fb866f99b5e67ccb2cdc277bde091aefe58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Build don't link:
// Origin: Jakub Jelinek <jakub@redhat.com>

class X {
public:
  X();
  virtual ~X();
}

X::x()
{				// ERROR - 
}

X::~x()
{				// ERROR - 
}