* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-55942.C
blob81f2f34ff4aa1d02244e192e8c41ddce4b31595a
1 // PR c++/55942
2 // { dg-do compile { target c++11 } }
4 struct A
6   constexpr explicit A(bool b) : o{flip(b)} { }
8   constexpr bool flip(bool b) { return !b; }
10   bool o;