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