Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / nontype17.C
blobf3a4480c9e337bc44ebe03576dc6e32e368346bb
1 // PR c++/35282
3 template<int> struct A
5     template<int> void foo();
6 };
8 template<> template<int> void A<0>::foo() {}