1 // { dg-do compile { target c++11 } }
2 template<class T> class my_limits {
3 public:
4   static constexpr T min() throw() { return T(); }
5   static constexpr T max() noexcept { return T(); }
6 };
7 
8 constexpr double var_min = my_limits<double>::min(); // #1  OK
9 constexpr double var_max = my_limits<double>::max(); // #2 Error
10