* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-noexcept2.C
blobd10039a92e131d7509c060f32c7a55aa18565834
1 // { dg-do compile { target c++11 } }
3 template<class T>
4 constexpr T value(T t) { return t; }
6 template<class T>
7 struct is_funny {
8   static constexpr bool value = false;
9 };
11 template<class T>
12 void eval() noexcept(value(is_funny<T>::value)) {}
14 constexpr bool ok = noexcept(eval<int>()); // line 12