Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / spec33.C
blob809d4f012c1ad886c9f4449c675cecadbd99ca55
1 //PR c++/27667
3 struct A
5     template<int> static void foo   () {}
6     template<>    static void foo<0>() {}  // { dg-error "explicit" }
7 };