blob: d237924902ea3e85cc18b01e3f810a4dd67a28ef [file] [log] [blame]
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);
}