2018-10-23 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-34219.C
blob91ee609325abdb2fe0e45273cb36cd72f3ab3d8a
1 // { dg-do compile { target c++11 } }
2 template<typename T, T a, T... Params>
3 struct max
5   static const T value = a > max<T, Params>::value ? a : max<T, Params>::value; // { dg-error "not expanded|Params" }
6 };
8 template<typename T, T a, T b>
9 struct max<T, a, b>
11         static const T value = a > b ? a : b;
14 static const int value1 = max< int, 1, 2>::value;
15 static const int value2 = max< int, 1, 3, 5>::value;