summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/destruct2.C
blob: 09b6bdd7991752dce36c6043333ce447601975fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PRMS Id: 4342
// Bug: g++ does not massage things enough to allow calling ~X().
// Build don't link:

struct X 
{
    virtual ~X ();
};

struct Y : public X
{};

struct Z : public Y, public X
{};				// WARNING - 

void foo ()
{
    Z* f = new Z;
    delete f;			// gets bogus error - 
}