Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / repo5.C
blob0d2893eee9114a3e4610e60fdb99dce05148aff7
1 // PR c++/25625
2 // { dg-options "-frepo" } 
3 // { dg-final { cleanup-repo-files } }
4 // { dg-require-host-local "" }
6 template< typename T, T N > struct integral_c {
7   static const T value = N;
8   typedef integral_c< T, value + 1 > next;
9 };
10 template< typename T, T N > T const integral_c< T, N >::value;
11 integral_c<int,0> a;
13 int main () {}