1//PR c++/27667
2
3struct A
4{
5    template<int> static void foo   () {}
6    template<>    static void foo<0>() {}  // { dg-error "explicit|template" }
7};
8