* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-eh-spec.C
blob93224b0c396ad930d98e8e5ca33ce5dcb6bab7d4
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 };
8 constexpr double var_min = my_limits<double>::min(); // #1  OK
9 constexpr double var_max = my_limits<double>::max(); // #2 Error