Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git] / 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();