OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / dtor2.C
1 struct Foo
2 {
3     template <int i>
4     ~Foo() {} // { dg-error "" }
5 };
6
7 int main()
8 {
9    Foo f;
10 }