PR c++/86728 - C variadic generic lambda.
[official-gcc.git] / gcc / testsuite / g++.dg / template / const7.C
blob424ac6d6f0579e7560495380916b423482f97005
1 // PR c++/47897
3 template < typename T, T N >
4 struct S
6     static const T value = N;
7     typedef S< T, value + 1 > next;
8 };