OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / anon4.C
1 // PR c++/28407
2 // A declaration in the anonymous namespace still has external linkage.
3
4 template <int *P> class A { };
5 namespace
6 {
7   int i;
8 }
9
10 A<&i> a;