aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit51.C
blob: dbac955230aedb8445ea8d53bb407bfeea6b922b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// { dg-do run  }
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 ();
}