PR c++/81917 - ICE with void_t and partial specialization.
[official-gcc.git] / gcc / testsuite / g++.dg / template / shift1.C
bloba4ceec92c3afa09c26bfbf4cc1b2c35aa8c9f2d5
1 // PR c++/18140
2 // { dg-options "-std=gnu++98" }
4 template <int N> struct IntHolder {
5   static const int value = N;
6 };
8 template <int N, int S> struct ShrIntHolder {
9   static const int value = IntHolder< N>>S >::value;