OSDN Git Service

2010-02-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / repo5.C
1 // PR c++/25625
2 // { dg-options "-frepo" } 
3 // { dg-final { cleanup-repo-files } }
4 // { dg-require-host-local "" }
5 // { dg-skip-if "dkms are not final links" { vxworks_kernel } }
6
7 template< typename T, T N > struct integral_c {
8   static const T value = N;
9   typedef integral_c< T, value + 1 > next;
10 };
11 template< typename T, T N > T const integral_c< T, N >::value;
12 integral_c<int,0> a;
13
14 int main () {}