/cp
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / var-templ27.C
blobda06b0123a9e3c56728d2068d1bfbbafc4f86161
1 // { dg-do compile { target c++14 } }
3 namespace A
5   template <class T> int I = 0;
6   template <class T> int I<T*> = 42;
9 int i = A::I<void*>;