OSDN Git Service

PR c++/28878
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / shift1.C
1 // PR c++/18140
2
3 template <int N> struct IntHolder {
4   static const int value = N;
5 };
6
7 template <int N, int S> struct ShrIntHolder {
8   static const int value = IntHolder< N>>S >::value;
9 };
10