aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/constexpr-eh-spec.C
blob: 93224b0c396ad930d98e8e5ca33ce5dcb6bab7d4 (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile { target c++11 } }
template<class T> class my_limits {
public:
  static constexpr T min() throw() { return T(); }
  static constexpr T max() noexcept { return T(); }
};

constexpr double var_min = my_limits<double>::min(); // #1  OK
constexpr double var_max = my_limits<double>::max(); // #2 Error