PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / repo5.C
blobe45ade7df48cba8d170f0e99d0aac3bb1f648882
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 } }
7 template< typename T, T N > struct integral_c {
8   static const T value = N;
9   typedef integral_c< T, value + 1 > next;
11 template< typename T, T N > T const integral_c< T, N >::value;
12 integral_c<int,0> a;
14 int main () {}