OSDN Git Service

PR c++/52685
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / spec33.C
1 //PR c++/27667
2
3 struct A
4 {
5     template<int> static void foo   () {}
6     template<>    static void foo<0>() {}  // { dg-error "explicit|template" }
7 };