aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/explicit42.C
blob: c19ffd025633d3d96a65abffd69feeb0b5820c96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern "C" void abort(void);

template <int I>
void f(int i)
{
}

template <void*>
void f(int i) 
{ 
  abort();
}

int main()
{
  f<0>(3);
}