// PR c++/28407
// A declaration in the anonymous namespace still has external linkage.

template <int *P> class A { };
namespace
{
  int i;
}

A<&i> a;


syntax highlighted by Code2HTML, v. 0.9.1