(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
template/
const7.C
// PR c++/47897

template < typename T, T N >
struct S
{
    static const T value = N;
    typedef S< T, value + 1 > next;
};