xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/pr12104.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1 template <int dimm> struct Patch {
2   static const unsigned int no_neighbor = 1;
3 };
4 template <int dim>
5 const unsigned int Patch<dim>::no_neighbor;
6 void f(const unsigned int);
g()7 void g() {
8   f(Patch<1>::no_neighbor);
9 }
10