* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-typedef1.C
blob98c2309abb681166f1658c02c0c9380189746bac
1 // PR c++/50508
2 // { dg-do compile { target c++11 } }
4 template <class T>
5   struct integral_constant {
6     typedef T value_type;
7     constexpr operator value_type() { return true; }
8   };
10 static constexpr bool value = integral_constant<bool>()
11                               && true;