Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / template / spec18.C
bloba22e8543d0e784c7959bc07d3768635990b0b5c1
1 // PR c++/17936
3 template<int, int N> struct A
5   void foo();
6 };
8 template<int N> struct A<1, N>
10   void foo();
13 template<> void A<1, 2>::foo();