aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.pt/explicit50.C
blob: 4f11eda6e6cdbd3db729a359de39c11487a75cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// { dg-do run  }
extern "C" void abort ();

template <class T> int f ()
{
  return sizeof(T);
}

int main ()
{
  if (f<long> () != sizeof(long)
      || f<char> () != sizeof(char)
      || f<long> () != sizeof(long)
      || f<long int> () != sizeof(long int))
    abort ();
}