Remove outermost loop parameter.
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / template / crash95.C
blob2ad9e9816666fd5fc98d8fda3ca00ab48e4a5bb8
1 // PR c++/43705
3 template < typename > struct S
5   template < > struct S < int > // { dg-error "explicit|specialization|template|parameter" }
6   {
7     S(int);
8   };
9 };
11 S < int > s(0); // { dg-error "incomplete type" }