summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit79.C
blob: 9d62ca40e9e027d2be64c8548828df88fd251ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do assemble  }

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

template <int J>
void f();

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