aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit79.C
blob: 16429ba62139891b837ec9d0f7bf23b66067931c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Build don't link:

template <int I>
void f(int (*)[I] = 0);

template <int J>
void f();

void g()
{
  f<-1>();
}