blob: 71807b365fa520847f95359688822beda33cf043 [file] [log] [blame]
// { dg-do run }
extern "C" void abort();
template <void* P>
void f(int j);
template <unsigned int I>
void f(int j);
template <void* P>
void f(int j)
{
abort();
}
template <unsigned int I>
void f(int j)
{
}
int main()
{
f<3>(7);
}