summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit40.C
blob: d237924902ea3e85cc18b01e3f810a4dd67a28ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
}