1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// PR c++/28301 // { dg-do compile } template<typename> struct A { template<int> void foo() }; // { dg-error "initializer" } template<> struct A<void> { template<int> void foo(); }; void bar() { A<void> a; a.foo<0>(); }