PR modula2/116918 -fswig correct syntax
[official-gcc.git] / gcc / testsuite / g++.dg / template / dtor4.C
blob917681fc13e0343cb6841133723764455fcada55
1 // PR c++/19440
2 // Origin: Volker Reichelt <reichelt@igpm.rwth-aachen.de>
4 // { dg-do compile }
6 template<int> struct A
8   ~A<0>(); // { dg-error "parse error|declaration|template-id" }
9 };