OSDN Git Service

* c-decl.c (shadow_tag_warned, grokdeclarator): Handle _Alignas
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-eh-spec.C
1 // { dg-options -std=c++0x }
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