// { dg-options "-std=c++0x" } template struct max { static const T value = a > max::value ? a : max::value; // { dg-error "not expanded|Params" } }; template struct max { static const T value = a > b ? a : b; }; static const int value1 = max< int, 1, 2>::value; static const int value2 = max< int, 1, 3, 5>::value;