blob: 2cdf85bbbb531ee1f19d30375ff1a9f390dcf24a [file] [log] [blame]
//PR c++/27667
struct A
{
template<int> static void foo () {}
template<> static void foo<0>() {} // { dg-error "31:template-id .foo<0>. in declaration|explicit specialization" }
};