* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor8.C
blob5b75e64750b35eeda96ac64db98046c52f93be6a
1 // PR c++/46466
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-fno-elide-constructors" }
5 struct S { bool b; };
6 constexpr S f() { return S{true}; }
7 static_assert(f().b,  "");