[PR c++/84702] ICE with default tmpl arg of overload set
[official-gcc.git] / gcc / testsuite / g++.dg / template / anon4.C
blob59bfee1e814a82f3ad4294e23237eef20774ba8a
1 // PR c++/28407
2 // A declaration in the anonymous namespace still has external linkage.
4 template <int *P> class A { };
5 namespace
7   int i;
10 A<&i> a;