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;
10 template< typename T, T N > T const integral_c< T, N >::value;