[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / anon5.C
blob34599c061e7cd2414975896da69231e192547ca4
1 // PR c++/45651
3 namespace { template <int T> struct A {}; }
4 template <int T> struct B { void f(A<T>); };
5 template struct B<1>;
6 template<int T> void B<T>::f(A<T>) {}