blob: 16429ba62139891b837ec9d0f7bf23b66067931c [file] [log] [blame]
// Build don't link:
template <int I>
void f(int (*)[I] = 0);
template <int J>
void f();
void g()
{
f<-1>();
}