blob: 49ea588cc5da3b7d893bb90826bff8300d6ef36c [file] [log] [blame]
// { dg-do compile { target c++14 } }
// { dg-options "-Wall" }
template <class T> T x;
template <> int x<int> = 0;
int main()
{
return x<int>;
}