aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit40.C
blob: 71807b365fa520847f95359688822beda33cf043 (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
28
// { dg-do run  }
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);
}