blob: da06b0123a9e3c56728d2068d1bfbbafc4f86161 [file] [log] [blame]
// { dg-do compile { target c++14 } }
namespace A
{
template <class T> int I = 0;
template <class T> int I<T*> = 42;
}
int i = A::I<void*>;