blob: 424ac6d6f0579e7560495380916b423482f97005 [file] [log] [blame]
// PR c++/47897
template < typename T, T N >
struct S
{
static const T value = N;
typedef S< T, value + 1 > next;
};