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

template <int a> int fact ()
{
  return 0;
}

template <> int fact<1> ()
{
  return 1;
}

int main()
{
  if (fact<3> () != 0 || fact<1> () != 1
      || fact<3> () != 0 || fact<1> () != 1 || fact<1+0> () != 1)
    abort ();
}