1 // PR c++/35282
2 
3 template<int> struct A
4 {
5     template<int> void foo();
6 };
7 
foo()8 template<> template<int> void A<0>::foo() {}
9