aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/const7.C
blob: 424ac6d6f0579e7560495380916b423482f97005 (plain)
1
2
3
4
5
6
7
8
// PR c++/47897

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