aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/dtor15.C
blob: ae85a702a408a288ee99f57fbce7787e9defe233 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/39225

template <class T>
class A
{
public:
    A() {}
    ~B() {}			// { dg-error "~B" }
};

int main()
{
    A<int> *a = new A<int>;

    return 0;
}